| 1 | import { ProviderIcon, useDropzone, useFileInput } from '@uppy/react' |
| 2 | |
| 3 | export interface CustomDropzoneProps { |
| 4 | openModal: (plugin: 'webcam' | 'dropbox' | 'screen-capture') => void |
| 5 | } |
| 6 | |
| 7 | export function CustomDropzone({ openModal }: CustomDropzoneProps) { |
| 8 | const { getRootProps, getInputProps } = useDropzone({ noClick: true }) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…