import { Menu, Box, useTheme } from "@mui/material"; import { Link } from "react-router-dom"; import type { MenuItem } from "./Menu"; type DropDownMenuProps = { anchorElement: HTMLElement | null, setAnchorElement: (element: null) => void, items: MenuItem[], }; export const DropDownMenu = ({ anchorElement, setAnchorElement, items = [], }: DropDownMenuProps) => { const theme = useTheme(); return (
); };