_404.tsx 214 B

123456789
  1. import { PageProps } from "$fresh/server.ts";
  2. export default function NotFound(props: PageProps) {
  3. return (
  4. <div className="pd-page pd-page-centered">
  5. Not Found: {props.url.pathname}
  6. </div>
  7. );
  8. }