UNPKG

use-latest-callback

Version:

React hook which returns the latest callback without changing the reference

10 lines (7 loc) 289 B
import { useEffect, useLayoutEffect } from 'react'; /** * Use `useEffect` during SSR and `useLayoutEffect` in the browser to avoid warnings. */ const useIsomorphicLayoutEffect = typeof document !== 'undefined' ? useLayoutEffect : useEffect; export default useIsomorphicLayoutEffect;