import * as React from 'react'; import { Dialog, DialogTitle, DialogContent, DialogActions, Button } from '@mui/material'; interface ModalProps { open: boolean; onClose: () => void; title: string; children: React.ReactNode; } const Modal: React.FC = ({ open, onClose, title, children }) => { return ( {title} {children} ); }; export default Modal;