brf/client/public/components/not_found_page.tsx
2025-12-13 21:12:08 +01:00

8 lines
159 B
TypeScript

import { h, type FunctionComponent } from 'preact'
const NotFoundPage: FunctionComponent = () => {
return <h1>Not Found</h1>
}
export default NotFoundPage