import { useRef } from 'react'; export function useLatest(value: T) { const ref = useRef(null); ref.current = value; return ref; }