Skip to content

Instantly share code, notes, and snippets.

@0xLDev
Created December 18, 2021 08:43
Show Gist options
  • Save 0xLDev/2fb269629959dfc20c85e1694fa3d640 to your computer and use it in GitHub Desktop.
Save 0xLDev/2fb269629959dfc20c85e1694fa3d640 to your computer and use it in GitHub Desktop.
import { useEffect, useRef } from 'react';
export const usePrevious = (value) => {
const refContainer = useRef(value);
useEffect(() => {
refContainer.current = value;
}, [value]);
return refContainer.current;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment