Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728
  1. import { Alert, Snackbar } from '@mui/material';
  2. interface NotificationProps {
  3. handleCloseNotification: () => void;
  4. notification: string;
  5. open: boolean;
  6. }
  7. const Notification: React.FC<NotificationProps> = ({ handleCloseNotification, notification, open }) => {
  8. return (
  9. <Snackbar
  10. anchorOrigin={{ vertical: 'top', horizontal: 'center' }}
  11. open={open}
  12. autoHideDuration={3000}
  13. onClose={handleCloseNotification}
  14. >
  15. <Alert
  16. onClose={handleCloseNotification}
  17. severity="success"
  18. sx={{ width: '100%', backgroundColor: 'green', color: 'white' }}
  19. >
  20. {notification}
  21. </Alert>
  22. </Snackbar>
  23. );
  24. };
  25. export default Notification;