UNPKG

@ant-design/pro-utils

Version:
10 lines (9 loc) 235 B
import { useRef } from 'react'; /** * @see https://github.com/streamich/react-use/blob/master/docs/useLatest.md */ export var useLatest = function useLatest(value) { var ref = useRef(value); ref.current = value; return ref; };