6 lines
184 B
TypeScript
6 lines
184 B
TypeScript
import { ErrorPageProps } from "$fresh/server.ts";
|
|
|
|
export default function Error500Page({ error }: ErrorPageProps) {
|
|
return <p>500 internal error: {(error as Error).message}</p>;
|
|
}
|