(e: DragEvent)
| 40 | } |
| 41 | } |
| 42 | const handleDragOut = (e: DragEvent) => { |
| 43 | e.preventDefault() |
| 44 | e.stopPropagation() |
| 45 | dragCounter-- |
| 46 | if (dragCounter > 0) return |
| 47 | |
| 48 | setIsDragging(false) |
| 49 | } |
| 50 | const handleDrop = (e: DragEvent) => { |
| 51 | e.preventDefault() |
| 52 | e.stopPropagation() |
nothing calls this directly
no outgoing calls
no test coverage detected