Skip to content

Commit

Permalink
(#5) Adicionando NavBar a Home da Aplicação
Browse files Browse the repository at this point in the history
Co-authored-by: Lucas Boaventura <lucasxboaventura@hotmail.com>
  • Loading branch information
2 people authored and sergiosacj committed Sep 17, 2021
1 parent ed58deb commit ee9d211
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/pages/Home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ import { useUserTheme } from 'hooks/theme';
import { Container } from './styles';

import NavBar from '../../components/NavBar';
import SecondNavBar from '../../components/NavBar/SecondNavBar';
import ThirdNavBar from '../../components/NavBar/ThirdNavBar';
import FourthNavBar from '../../components/NavBar/FourthNavBar';

const Home: React.FC = () => {
const { switchTheme, theme } = useUserTheme();

return (
<Container>
<NavBar />
<NavBar/>
<h1>Tá na Mesa</h1>

<button type="button" onClick={switchTheme}>
Expand Down

0 comments on commit ee9d211

Please sign in to comment.