brf/client/public/components/error_page.tsx
2025-11-24 17:09:09 +01:00

16 lines
312 B
TypeScript

import { h } from 'preact'
import Head from './head.ts'
const OtherPage = ({ error }) => (
<section>
<Head>
<title> : Error</title>
</Head>
<h1>Oh no!</h1>
<pre>{JSON.stringify(error, ['name', ...Object.getOwnPropertyNames(error)], ' ')}</pre>
</section>
)
export default OtherPage