mirror of
https://github.com/streamich/react-use.git
synced 2026-01-18 14:06:52 +00:00
10 lines
339 B
TypeScript
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;
|