import React from "react"; import { Alert, AlertTitle, Box } from "@mui/material"; import { useTranslation } from "react-i18next"; const NotAllowed = () => { const { t } = useTranslation(); return ( * + *": { marginTop: 1 } }} > {t("Announcements.NotAllowed.Title")} {t("Announcements.NotAllowed.Message")} ); }; export default NotAllowed;