diff --git a/src/App.css b/src/App.css index 65fcc80..7ed6657 100644 --- a/src/App.css +++ b/src/App.css @@ -45,3 +45,10 @@ .read-the-docs { color: #888; } + +#root { + width: 100vw; /* 100% of viewport width */ + height: 100vh; /* 100% of viewport height */ + padding: 0; + margin: 0; +} \ No newline at end of file diff --git a/src/components/TabBar.tsx b/src/components/TabBar.tsx index 179c0b9..2438f73 100644 --- a/src/components/TabBar.tsx +++ b/src/components/TabBar.tsx @@ -4,13 +4,11 @@ interface Props { name: string; } -const TabBar: React.FC = ({ name }) => { +const TabBar: React.FC = ({ }) => { + + return( -
- Tab 1 - Tab 2 - Tab 3 -
+

hello

); };