// Taken from https://github.com/NadavCohen/react-fork-refexport function forkRef(...refs) {
return function (node) {
for (constref of refs) {
if (typeofref === 'function')
ref(node);
elseif (ref)
ref.current = node;
}
};
}
//# sourceMappingURL=forkRef.js.map