2021-03-16 23:58:12 +01:00
|
|
|
import { FC } from "react";
|
|
|
|
|
import { CustomError } from "../components";
|
|
|
|
|
|
|
|
|
|
const My500: FC = () => (
|
2021-03-28 23:17:47 +02:00
|
|
|
<CustomError statusCode={500} statusText={"Internal Server Error"} />
|
2021-03-16 23:58:12 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
export default My500;
|