UNPKG

133 BTypeScriptView Raw
1/** React hook which tracks the previous state of a given value. */
2export declare function usePrevious<T>(value: T): T | undefined;