import {Fade, Menu} from "@mui/material"; import * as React from "react"; const PopupMenu = (props) => { const horizontal = props.horizontal ?? "left"; const arrow = (horizontal === "right") ? { right: 19 } : { left: 19 }; return (
); }; export default PopupMenu;