Uniformize folder structure (#693)
* Uniformize folder structure * Fix icons * Fix icons * Fix tests * Fix tests
This commit is contained in:
17
front/src/modules/ui/navbar/components/NavItemsContainer.tsx
Normal file
17
front/src/modules/ui/navbar/components/NavItemsContainer.tsx
Normal file
@ -0,0 +1,17 @@
|
||||
import styled from '@emotion/styled';
|
||||
|
||||
type OwnProps = {
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
const StyledNavItemsContainer = styled.div`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-top: 40px;
|
||||
`;
|
||||
|
||||
function NavItemsContainer({ children }: OwnProps) {
|
||||
return <StyledNavItemsContainer>{children}</StyledNavItemsContainer>;
|
||||
}
|
||||
|
||||
export default NavItemsContainer;
|
||||
Reference in New Issue
Block a user