Files
LingvAI/pages/500.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
196 B
TypeScript

import { FC } from "react";
import { CustomError } from "@components";
const My500: FC = () => (
<CustomError statusCode={500} statusText="Internal Server Error" />
);
export default My500;