micro/packages/web/src/pages/500.tsx

6 lines
172 B
TypeScript

import ErrorPage, { Lenny } from './_error';
export default function InternalServerError() {
return <ErrorPage message="Internal Server Error" lenny={Lenny.Shrug} />;
}