import { ReactNode } from 'react'; import HomeRoundedIcon from '@material-ui/icons/HomeRounded'; import SearchRoundedIcon from '@material-ui/icons/SearchRounded'; function NavbarItem(props: { icon?: ReactNode; title: string; href: string; active: boolean; }) { return
{props.icon} {props.title}
} export default function Navbar(props: { page?: string; }) { return
} title="Home" href="/"/> } title="Search for posts" href="/search"/>
}