All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.utils.use-isomorphic-layout-effect.ts Maven / Gradle / Ivy

The newest version!
// From https://github.com/streamich/react-use/blob/master/src/useIsomorphicLayoutEffect.ts
// useLayoutEffect but does not trigger warning in server-side rendering
import {useEffect, useLayoutEffect} from 'react';

const useIsomorphicLayoutEffect = typeof document !== 'undefined' ? useLayoutEffect : useEffect;

export default useIsomorphicLayoutEffect;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy