| 3 | import {clsx} from 'clsx'; |
| 4 | |
| 5 | interface DropzoneProps { |
| 6 | onFilesAdded: (files: File[]) => void; |
| 7 | isProcessing: boolean; |
| 8 | compact?: boolean; |
| 9 | } |
| 10 | |
| 11 | const DropzoneComponent = ({ |
| 12 | onFilesAdded, |
nothing calls this directly
no outgoing calls
no test coverage detected