We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was trying to make the basic component work on react native project
const Standard = () => { const getUploadParams = () => { return { url: 'https://httpbin.org/post' } } const handleChangeStatus = ({ meta }, status) => { console.log(status, meta) } const handleSubmit = (files, allFiles) => { console.log(files.map(f => f.meta)) allFiles.forEach(f => f.remove()) } return ( <Dropzone getUploadParams={getUploadParams} onChangeStatus={handleChangeStatus} onSubmit={handleSubmit} styles={{ dropzone: { minHeight: 200, maxHeight: 250 } }} /> ) } <Standard />
and it is throwing me this error constantly.
The text was updated successfully, but these errors were encountered:
This I just ReactJS. React Native has a completely different approach
Sorry, something went wrong.
No branches or pull requests
I was trying to make the basic component work on react native project
and it is throwing me this error constantly.
The text was updated successfully, but these errors were encountered: