import { useEffect, useRef } from'react'/**
* A hook that returns the previous value of a variable
*/export default function usePrevious<T>(value: T): T | undefined {
constref = useRef<T>()
useEffect(() => {
ref.current = value
}, [value])
returnref.current
}