ls-deno/routes/_500.tsx

6 lines
153 B
TypeScript

import { ErrorPageProps } from "$fresh/server.ts";
export default function Error500Page(_props: ErrorPageProps) {
return <p>500 internal error</p>;
}