UNPKG

@chatui/core

Version:

The React library for Chatbot UI

6 lines 132 B
import { useRef } from 'react'; export function useLatest(value) { var ref = useRef(value); ref.current = value; return ref; }