UNPKG

use-latest-callback

Version:

React hook which returns the latest callback without changing the reference

7 lines (6 loc) 242 B
import { useLayoutEffect } from 'react'; /** * Use `useEffect` during SSR and `useLayoutEffect` in the browser to avoid warnings. */ declare const useIsomorphicLayoutEffect: typeof useLayoutEffect; export default useIsomorphicLayoutEffect;