Files
SecureNotes/src/components/routes/404/index.tsx
2019-06-03 16:51:11 +02:00

5 lines
108 B
TypeScript

import { h } from "preact";
export default function Error404Page() {
return <h1>Page not found!</h1>;
}