| 2 | import { useImageEditor } from '@uppy/react' |
| 3 | |
| 4 | interface ImageEditorProps { |
| 5 | file: UppyFile<any, any> |
| 6 | close: () => void |
| 7 | } |
| 8 | |
| 9 | export function ImageEditor({ file, close }: ImageEditorProps) { |
| 10 | const { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…