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