Files
LingvAI/pages/404.tsx
David bdaced0457 Dependencies updated & small enhancements (#27)
* Dependencies updated and imports shortened

* Head tags refactored

* Final tweaks
2021-06-12 22:44:56 +02:00

9 lines
203 B
TypeScript

import { FC } from "react";
import { CustomError } from "@components";
const My404: FC = () => (
<CustomError statusCode={404} statusText="This page could not be found" />
);
export default My404;