UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

13 lines 363 B
import * as React from 'react'; /** Similar with `useEffect` but only trigger after mounted */ const useUpdatedEffect = (callback, conditions) => { const mountRef = React.useRef(false); React.useEffect(() => { if (mountRef.current) { callback(); } else { mountRef.current = true; } }, conditions); }; export default useUpdatedEffect;