aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/docs/app/routes/not-found.tsx
blob: 7be60815c27611a2975f15f099d634fe40c847c8 (plain) (blame)
1
2
3
4
5
6
7
export function loader() {
  throw new Response("Not Found", { status: 404 });
}

export default function NotFound() {
  return null;
}