(e: DragEvent)
| 32 | e.stopPropagation() |
| 33 | } |
| 34 | const handleDragIn = (e: DragEvent) => { |
| 35 | e.preventDefault() |
| 36 | e.stopPropagation() |
| 37 | dragCounter++ |
| 38 | if (e.dataTransfer && e.dataTransfer.items && e.dataTransfer.items.length > 0) { |
| 39 | setIsDragging(true) |
| 40 | } |
| 41 | } |
| 42 | const handleDragOut = (e: DragEvent) => { |
| 43 | e.preventDefault() |
| 44 | e.stopPropagation() |
nothing calls this directly
no outgoing calls
no test coverage detected