import ModalLib, { ModalProps as LibModalProps } from "@mui/material/Modal"; import { FC } from "react"; export type ModalProps = LibModalProps; const Modal: FC = ({ children, ...props }) => { return {children}; }; export default Modal;