Skip to content

Instantly share code, notes, and snippets.

@janicduplessis
Created February 20, 2019 02:31
Show Gist options
  • Save janicduplessis/fc729b93a3417f42b3bb2e734c772859 to your computer and use it in GitHub Desktop.
Save janicduplessis/fc729b93a3417f42b3bb2e734c772859 to your computer and use it in GitHub Desktop.
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