9 lines
144 B
TypeScript
9 lines
144 B
TypeScript
import React from 'react';
|
|
import styled from 'styled-components';
|
|
|
|
const Tabs = () => {
|
|
return <span>HEllo!</span>;
|
|
};
|
|
|
|
export default Tabs;
|