Files
med-notes/.pnpm-store/v10/files/ea/8614a7c8b32b662c58f405c799962495c0e1b15fdb715e9bb0b02851e7380a5f5e8d71063db6b3c66996289d271226007d48796f49e7a66157021e4514f960
2025-05-09 05:30:08 +02:00

16 lines
360 B
Plaintext

import { useMatch } from "./useMatch.js";
function useLoaderData(opts) {
return useMatch({
from: opts.from,
strict: opts.strict,
structuralSharing: opts.structuralSharing,
select: (s) => {
return opts.select ? opts.select(s.loaderData) : s.loaderData;
}
});
}
export {
useLoaderData
};
//# sourceMappingURL=useLoaderData.js.map