Files

9 lines
203 B
TypeScript
Raw Permalink Normal View History

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