UNPKG

react-selectable-box

Version:

A React component used hooks that allows you to select elements in the drag area using the mouse

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