useLoaderData
Returns the serialized data from the closest route loader
.
import { json } from "@remix-run/node"; // or cloudflare/deno
import { useLoaderData } from "@remix-run/react";
export async function loader() {
return json(await fakeDb.invoices.findAll());
}
export default function Invoices() {
const invoices = useLoaderData<typeof loader>();
// ...
}
Discussions
API