14 lines
311 B
TypeScript
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
|