react-use/src/useIsomorphicLayoutEffect.ts

10 lines
339 B
TypeScript

import { useEffect, useLayoutEffect } from 'react';
/**
* `useLayoutEffect` that does not show warning on server.
* See: https://medium.com/@alexandereardon/uselayouteffect-and-ssr-192986cdcf7a
*/
const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect;
export default useIsomorphicLayoutEffect;