6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
import { UnknownPageProps } from "$fresh/server.ts";
|
|
|
|
export default function NotFoundPage({ url }: UnknownPageProps) {
|
|
return <p>404 not found: {url.pathname}</p>;
|
|
}
|