Skip to content

Instantly share code, notes, and snippets.

@cheskoxd
Created March 8, 2024 23:43
Show Gist options
  • Save cheskoxd/f60cf707d03a916646a9ed5ca8700309 to your computer and use it in GitHub Desktop.
Save cheskoxd/f60cf707d03a916646a9ed5ca8700309 to your computer and use it in GitHub Desktop.
import { useEffect, useRef } from "react";
export const usePrevious = <T>(value: T) => {
const ref = useRef<T>();
useEffect(() => {
ref.current = value;
}, [value]);
return ref.current;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment