Files
LingvAI/pages/500.tsx

9 lines
200 B
TypeScript
Raw Normal View History

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