Files
med-notes/.pnpm-store/v10/files/50/a3edb293df71dedef53e33c71e13dadfc32ef51e272362046f0af7d54d6a7c1ebd8795dedb122a53a7d64948d984cfcf53b1fe14a7e85827b0d718d8166f0f
2025-05-09 05:30:08 +02:00

17 lines
387 B
Plaintext

import { useMatch } from "./useMatch.js";
function useParams(opts) {
return useMatch({
from: opts.from,
strict: opts.strict,
shouldThrow: opts.shouldThrow,
structuralSharing: opts.structuralSharing,
select: (match) => {
return opts.select ? opts.select(match.params) : match.params;
}
});
}
export {
useParams
};
//# sourceMappingURL=useParams.js.map