(e: DragEvent)
| 41 | }; |
| 42 | |
| 43 | const handleWindowDragLeave = (e: DragEvent) => { |
| 44 | e.preventDefault(); |
| 45 | dragCounter.current -= 1; |
| 46 | if (dragCounter.current === 0) { |
| 47 | setIsDragOver(false); |
| 48 | } |
| 49 | }; |
| 50 | |
| 51 | const handleWindowDragOver = (e: DragEvent) => { |
| 52 | e.preventDefault(); |
nothing calls this directly
no outgoing calls
no test coverage detected