UNPKG

preact-arco-design

Version:

Arco Design React UI Library.

6 lines (5 loc) 449 B
import { useEffect, useLayoutEffect } from "preact/compat"; 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;