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