| 26 | import { Snackbar, Alert, AlertColor } from '@mui/material'; |
| 27 | |
| 28 | interface SnackbarContextType { |
| 29 | notify: (message: string, severity?: AlertColor, duration?: number) => void; |
| 30 | } |
| 31 | |
| 32 | const SnackbarContext = createContext<SnackbarContextType | undefined>(undefined); |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected