import { Alert, Snackbar } from '@mui/material'; interface NotificationProps { handleCloseNotification: () => void; notification: string; open: boolean; } const Notification: React.FC = ({ handleCloseNotification, notification, open }) => { return ( {notification} ); }; export default Notification;