Viewing docs for dev branch, not the latest release. View latest
useLoaderData

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>();
  // ...
}

Additional Resources

Discussions

API

Docs and examples licensed under MIT