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 ( {props.children} ); }; export default PopupMenu;