import styled from '@emotion/styled'; import { useMatch, useResolvedPath } from 'react-router-dom'; import NavItem from './NavItem'; const NavbarContainer = styled.div` display: flex; flex-direction: row; align-items: stretch; padding-left: 12px; height: 58px; border-bottom: 2px solid #eaecee; `; function Navbar() { return ( <> ); } export default Navbar;