UNPKG

@gorhom/bottom-sheet

Version:

A performant interactive bottom sheet with fully configurable options 🚀

22 lines (20 loc) • 645 B
import { useCallback, useEffect, useRef } from 'react'; // biome-ignore lint: to be addressed! /** * Provide a stable version of useCallback * https://gist.github.com/JakeCoxon/c7ebf6e6496f8468226fd36b596e1985 */ export const useStableCallback = callback => { const callbackRef = useRef(); const memoCallback = useCallback( // biome-ignore lint: to be addressed! (...args) => callbackRef.current && callbackRef.current(...args), []); useEffect(() => { callbackRef.current = callback; return () => { callbackRef.current = undefined; }; }); return memoCallback; }; //# sourceMappingURL=useStableCallback.js.map