Files
PolyMPR/routes/_404.tsx

13 lines
201 B
TypeScript

import { Head } from "$fresh/runtime.ts";
export default function Error404() {
return (
<>
<Head>
<title>404 - Page not found</title>
</Head>
<p>404</p>
</>
);
}