Skip to content

Commit

Permalink
(#5) Corrigindo importação de estilos
Browse files Browse the repository at this point in the history
  • Loading branch information
ServidioEC committed Sep 13, 2021
1 parent 01e674e commit 313faa2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frontend/src/components/NavBar/SecondNavBar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import React from 'react';
import { FiArrowLeft } from 'react-icons/fi';

import { SecondNavBarContainer, SecondNameContainer } from 'components/NavBar/SecondNavBar/styles';
import { NavBarContainer,NameContainer } from 'components/NavBar/styles';

const SecondNavBar: React.FC = () => {
return (
<SecondNavBarContainer>
<NavBarContainer>
<section>
<FiArrowLeft />
<span>Voltar</span>
</section>

<SecondNameContainer>
<NameContainer>
<span>Pedido Vazio</span>
</SecondNameContainer>
</SecondNavBarContainer>
</NameContainer>
</NavBarContainer>
);
};

Expand Down

0 comments on commit 313faa2

Please sign in to comment.