| 2 | import classNames from 'classnames' |
| 3 | |
| 4 | interface DraggerProps extends PropsWithChildren{ |
| 5 | onFile: (files: FileList) => void; |
| 6 | } |
| 7 | |
| 8 | export const Dragger: FC<DraggerProps> = (props) => { |
| 9 |
nothing calls this directly
no outgoing calls
no test coverage detected