Skip to content

Instantly share code, notes, and snippets.

@YannickLeRoux
Created May 6, 2019 18:16
Show Gist options
  • Save YannickLeRoux/3f9f0099fd0165943a80dd3acbe28743 to your computer and use it in GitHub Desktop.
Save YannickLeRoux/3f9f0099fd0165943a80dd3acbe28743 to your computer and use it in GitHub Desktop.
usePrevious Hook
const usePrevious = value => {
const ref = useRef();
useEffect(() => {
ref.current = value;
});
return ref.current;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment