import { Drawer } from '@mui/material'; import ReactDOM from 'react-dom'; export const DrawerRight = ({ children, onClose = null, open } = {}) => { return ReactDOM.createPortal( {children} , document.body ); };