/** @jsx h */ import { h } from "preact"; import { UnknownPageProps } from "$fresh/server.ts"; export default function NotFound(props: UnknownPageProps) { return (
Not Found: {props.url.pathname}
); }