(event: React.ChangeEvent<HTMLInputElement>)
| 74 | }, []); |
| 75 | |
| 76 | const handleFileSelect = async (event: React.ChangeEvent<HTMLInputElement>) => { |
| 77 | const files = event.target.files; |
| 78 | if (!files) return; |
| 79 | await processFiles(Array.from(files)); |
| 80 | }; |
| 81 | |
| 82 | const handleDrop = async (event: React.DragEvent) => { |
| 83 | event.preventDefault(); |
nothing calls this directly
no test coverage detected