Skip to content

Commit

Permalink
(#5) Substituindo imports locais por paths completos
Browse files Browse the repository at this point in the history
Co-authored-by: Emily Sousa <diassousa@yahoo.com.br>
  • Loading branch information
sergiosacj and emysdias committed Sep 17, 2021
1 parent d597546 commit 04b57be
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions frontend/src/pages/Home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import { useUserTheme } from 'hooks/theme';

import Loading from 'components/Loading';
import MenuItem from 'components/MenuItem';
import { Container } from './styles';
import { Container } from 'pages/Home/styles';

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

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

0 comments on commit 04b57be

Please sign in to comment.