import * as React from 'react'; import Portal from '@mui/material/Portal'; import { Box } from '@mui/system'; export default function SimplePortal() { const [show, setShow] = React.useState(false); const container = React.useRef(null); const handleClick = () => { setShow(!show); }; return (