All Downloads are FREE. Search and download functionalities are using the official Maven repository.

utils.usePrevious.ts Maven / Gradle / Ivy

The newest version!
import { useRef } from 'react'

export function usePrevious(value: T) {
    const ref = useRef()
    const prevValue = ref.current

    ref.current = value

    return prevValue
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy