Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/Savy011/fullstackopen-exercises. My Exercise Submissions for FullStack Open fullstackopen.com/en
Something went wrong. Try again.
515 B · 24 lines
JavaScript
at main
12345678910111213141516171819202122232425import { Alert } from '@mui/material'import { useNotifValue } from '../utils/NotifContext'
const NotifBox = () => { const notif = useNotifValue()
/*const style = { padding: 5, paddingLeft: 10, paddingRight: 10, border: 'solid', borderRadius: 10, fontFamily: 'monospace', fontSize: 18, }*/
if (notif.message === '') { return null }
return <Alert severity={notif.severity}>{notif.message}</Alert>}
export default NotifBox