Skip to content

Instantly share code, notes, and snippets.

@ZacharyL2
Created September 3, 2022 14:47
Show Gist options
  • Save ZacharyL2/13030ceac10e70ff5c489ffd3ab2e9fb to your computer and use it in GitHub Desktop.
Save ZacharyL2/13030ceac10e70ff5c489ffd3ab2e9fb to your computer and use it in GitHub Desktop.
import { useEffect, useRef } from 'react';
const usePrevious = (value) => {
const ref = useRef();
useEffect(() => {
ref.current = value;
}, [value]);
return ref.current;
};
export default usePrevious;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment