import { Link } from "@remix-run/react"; export const loader = () => { throw new Response(null, { status: 404, }); }; export default function () { return (
foo
Go back
); }