Created
February 20, 2019 02:31
-
-
Save janicduplessis/fc729b93a3417f42b3bb2e734c772859 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react'; | |
/** | |
* Like useEffect but called only on updates. | |
*/ | |
export function useUpdateEffect( | |
effect: React.EffectCallback, | |
deps?: ReadonlyArray<any>, | |
): void { | |
const mounted = React.useRef(false); | |
React.useEffect(() => { | |
if (!mounted.current) { | |
mounted.current = true; | |
} else { | |
effect(); | |
} | |
}, deps); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment