pages.NotFound.js Maven / Gradle / Ivy
import { Helmet } from 'react-helmet';
import {
Box,
Container,
Typography
} from '@mui/material';
import { useTranslation } from 'react-i18next';
import { useConfig } from 'hooks/config';
const NotFound = () => {
const {t} = useTranslation()
const { project } = useConfig()
return (
<>
404 | {project}
{t('404')}
>
);
}
export default NotFound;