import { useNavigate } from "react-router-dom"; import { Button } from "src/components"; import { intl } from "src/locale"; export function ErrorNotFound() { const navigate = useNavigate(); return (

{intl.formatMessage({ id: "notfound.title" })}

{intl.formatMessage({ id: "notfound.text" })}

); }