Use File Upload
A React hook for handling file uploads with progress tracking and cancellation
Installation
Usage
For a complete implementation example, check out the Single Image Upload component.
Reference
Options
Prop | Type | Default |
---|---|---|
onSuccess | (url: string) => void | - |
onError | (error: string) => void | - |
Return Values
Prop | Type | Default |
---|---|---|
data | string | - |
selectedFile | File | null | - |
isUploading | boolean | - |
progress | number | - |
error | string | null | - |
handleFileUpload | (file: File) => Promise<void> | - |
cancelUpload | () => void | - |
Edit on GitHub
Last updated on