import { FC } from "react"; import { Box, Grid, Typography, List, ListItem, ListItemIcon, ListItemText, Drawer, Accordion, AccordionSummary, AccordionDetails, } from "@mui/material"; import { FeaturedPlayList as FeaturedPlayListIcon, Person as PersonIcon, Analytics as AnalyticsIcon, Logout as LogoutIcon, Cottage as CottageIcon, Settings as SettingsIcon, } from "@mui/icons-material"; import Link from "next/link"; const MenuItem = ({ name, href, Icon, iconSize, indent = 0 }: any) => ( {iconSize > 0 && } a": { textDecoration: "none !important", }, "a:visited": { textDecoration: "none !important", }, border: 0, }} > {name} } /> ); interface SidebarProps { open: boolean; } export const Sidebar: FC = ({ open }) => ( Hello Agent/User );