import React from 'react'; import { Snackbar } from "@material-ui/core"; import { useUserContext } from './Contexts/UserContext'; export const MessageBar = () => { const { error, setError } = useUserContext(); const open = (error !== null); return ( setError(null)}/>) }