import * as React from 'react'; import { useRef, useEffect } from 'react'; function usePrevious(value: T): T | undefined { const ref = useRef(); useEffect(() => { ref.current = value; }, [value]); return ref.current; } export { usePrevious };