```js import {useEffect, useRef} from 'react'; const usePrevious = (value) => { const ref = useRef(); useEffect(() => { ref.current = value; }); return ref.current; }; export {usePrevious}; ```