(e: DragEvent)
| 49 | }; |
| 50 | |
| 51 | const handleWindowDragOver = (e: DragEvent) => { |
| 52 | e.preventDefault(); |
| 53 | }; |
| 54 | |
| 55 | const handleWindowDrop = async (e: DragEvent) => { |
| 56 | e.preventDefault(); |
nothing calls this directly
no outgoing calls
no test coverage detected