UNPKG

rsuite

Version:

A suite of react components

13 lines (12 loc) 283 B
import { useRef } from 'react'; /** * Returns a ref that is immediately updated with the new value * * @param value The Ref value * @category refs */ export default function useUpdatedRef(value) { var valueRef = useRef(value); valueRef.current = value; return valueRef; }