import styled from '@emotion/styled'; import { useMatch, useResolvedPath } from 'react-router-dom'; import { User } from '../../interfaces/user.interface'; import NavItem from './NavItem'; import ProfileContainer from './ProfileContainer'; const NavbarContainer = styled.div` display: flex; flex-direction: row; justify-content: space-between; padding-left: 12px; height: 58px; border-bottom: 2px solid #eaecee; `; const NavItemsContainer = styled.div` display: flex; flex-direction: row; `; type OwnProps = { user?: User; }; function Navbar({ user }: OwnProps) { return ( <> ); } export default Navbar;