brf/client/admin/components/not_found_page.tsx
2025-12-18 07:31:37 +01:00

14 lines
311 B
TypeScript

import { h, type FunctionComponent } from 'preact'
import type { RoutableProps } from 'preact-router'
const NotFoundPage: FunctionComponent<RoutableProps> = () => (
<section>
<h1>Not Found :(</h1>
<p>
Try the <a href='/admin'>Start Page</a>
</p>
</section>
)
export default NotFoundPage