_404.tsx 270 B

1234567891011
  1. /** @jsx h */
  2. import { h } from "preact";
  3. import { UnknownPageProps } from "$fresh/server.ts";
  4. export default function NotFound(props: UnknownPageProps) {
  5. return (
  6. <div className="pd-page pd-page-centered">
  7. Not Found: {props.url.pathname}
  8. </div>
  9. );
  10. }