import React from "react"; import { useTranslation } from "react-i18next"; const NotFound: React.FC = () => { const { t } = useTranslation(); return

{t("NotFound")}

; }; export default NotFound;