(e, position)
| 105 | } |
| 106 | |
| 107 | const handleDragStart = (e, position) => { |
| 108 | draggingItem.current = position |
| 109 | setStartDragPos(position) |
| 110 | setEndDragPos(-1) |
| 111 | } |
| 112 | const handleDragEnter = (e, position) => { |
| 113 | setEndDragPos(position) |
| 114 | dragOverItem.current = position |