import { Snackbar, IconButton, Alert } from '@mui/material' import { Close } from '@mui/icons-material' import { useCommonStore } from '../stores/common.store' export default function Toast() { const { toastOpen, toastMessage, closeToast } = useCommonStore() return ( } sx={{ // Stack above other snackbars if multiple '& .MuiSnackbarContent-root': { flexWrap: 'nowrap', }, }} /> ) }