import { FC } from "react"; import { Box, Grid, Typography, List, ListItem, ListItemIcon, ListItemText, Drawer, } from "@mui/material"; import Link from "next/link"; const MenuItem = ({ name, href, iconSize }: any) => ( {/* */} {name} } /> ); interface SidebarProps { open: boolean; } export const Sidebar: FC = ({ open }) => ( );