13 lines
298 B
TypeScript
13 lines
298 B
TypeScript
|
import { useRef, useEffect } from 'react';
|
||
|
|
||
|
/** Get the last version of this value. */
|
||
|
// https://usehooks.com/usePrevious/
|
||
|
export const usePrevious = <T>(value: T): T | undefined => {
|
||
|
const ref = useRef<T>();
|
||
|
|
||
|
useEffect(() => {
|
||
|
ref.current = value;
|
||
|
}, [value]);
|
||
|
|
||
|
return ref.current;
|
||
|
};
|