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