Files
LingvAI/pages/404.tsx

9 lines
207 B
TypeScript
Raw Normal View History

2021-03-16 23:58:12 +01:00
import { FC } from "react";
import { CustomError } from "../components";
const My404: FC = () => (
<CustomError statusCode={404} statusText={"This page could not be found"} />
2021-03-16 23:58:12 +01:00
);
export default My404;