import { useTranslation } from 'react-i18next'; import { Link, useNavigate } from 'react-router-dom'; export const ErrorPage = () => { const navigate = useNavigate(); const { t } = useTranslation(); return (

Error 404

Not Found :(

navigate(-1)} to="#" > {t('goBack')}
home
); };