11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
const NotFound: React.FC = () => {
|
|
const { t } = useTranslation();
|
|
|
|
return <h1>{t("NotFound")}</h1>;
|
|
};
|
|
|
|
export default NotFound;
|