import React, { useState } from 'react'; import { Snackbar, Alert, Button } from '@mui/material'; import useAlertStore from '../store/alerts'; const AlertPopup = () => { const { open, message, severity, hideAlert } = useAlertStore(); const handleClose = () => { hideAlert(); }; return ( {message} ); }; export default AlertPopup;