Initial commit
This commit is contained in:
13
node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs
generated
vendored
Normal file
13
node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
// packages/react/use-callback-ref/src/useCallbackRef.tsx
|
||||
import * as React from "react";
|
||||
function useCallbackRef(callback) {
|
||||
const callbackRef = React.useRef(callback);
|
||||
React.useEffect(() => {
|
||||
callbackRef.current = callback;
|
||||
});
|
||||
return React.useMemo(() => (...args) => callbackRef.current?.(...args), []);
|
||||
}
|
||||
export {
|
||||
useCallbackRef
|
||||
};
|
||||
//# sourceMappingURL=index.mjs.map
|
||||
Reference in New Issue
Block a user