UNPKG

@gilbarbara/hooks

Version:

Collection of useful React hooks

12 lines (8 loc) 215 B
import { useEffect, useRef } from 'react'; export function usePrevious<T>(state: T): T | undefined { const ref = useRef<T>(undefined); useEffect(() => { ref.current = state; }); return ref.current; }