UNPKG

@liveblocks/react-ui

Version:

A set of React pre-built components for the Liveblocks products. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.

13 lines (10 loc) 239 B
import { useRef, useEffect } from 'react'; function useLatest(value) { const ref = useRef(value); useEffect(() => { ref.current = value; }, [value]); return ref; } export { useLatest }; //# sourceMappingURL=use-latest.js.map