UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

7 lines (6 loc) 189 B
import { useCallback, useRef } from 'react'; export const useLatest = (value) => { const ref = useRef(value); ref.current = value; return useCallback(() => ref.current, []); };