ls-deno/routes/_404.tsx

6 lines
169 B
TypeScript
Raw Normal View History

2022-09-27 14:41:17 -05:00
import { UnknownPageProps } from "$fresh/server.ts";
export default function NotFoundPage({ url }: UnknownPageProps) {
return <p>404 not found: {url.pathname}</p>;
}