@arco-design/web-react
Version:
Arco Design React UI Library.
7 lines (6 loc) • 441 B
JavaScript
import { useEffect, useLayoutEffect } from 'react';
import { isServerRendering } from '../dom';
// Because useLayoutEffect in the ssr environment will report a warning
// So when you need to use useLayoutEffect, use useIsomorphicLayoutEffect instead, it will use useEffect in the ssr environment to avoid this problem
var useIsomorphicLayoutEffect = isServerRendering ? useEffect : useLayoutEffect;
export default useIsomorphicLayoutEffect;