1 2 3 4 5 6 7
export function loader() { throw new Response("Not Found", { status: 404 }); } export default function NotFound() { return null; }