ls-deno/routes/_500.tsx

6 lines
153 B
TypeScript
Raw Normal View History

2022-09-27 14:41:17 -05:00
import { ErrorPageProps } from "$fresh/server.ts";
2022-09-29 20:22:30 -05:00
export default function Error500Page(_props: ErrorPageProps) {
return <p>500 internal error</p>;
2022-09-27 14:41:17 -05:00
}