Skip to content

Instantly share code, notes, and snippets.

@satyam4p
Created July 31, 2024 15:01
Show Gist options
  • Save satyam4p/f4aaafa80fdad8fa0fbf0a9deca3a390 to your computer and use it in GitHub Desktop.
Save satyam4p/f4aaafa80fdad8fa0fbf0a9deca3a390 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