UNPKG

@react-hook/passive-layout-effect

Version:

A React hook that uses useEffect() on the server and useLayoutEffect() in the browser

3 lines 207 B
import React from 'react'; const usePassiveLayoutEffect = React[typeof document !== 'undefined' && document.createElement !== void 0 ? 'useLayoutEffect' : 'useEffect']; export default usePassiveLayoutEffect;