Вы можете использовать этот код из документации: он позволяет пользователю нажать на DropZone и открывает средство выбора файлов:
class Basic extends React.Component {
constructor() {
super()
this.state = {
disabled: true,
files: []
}
}
onDrop(files) {
this.setState({files});
}
toggleDisabled() {
this.setState({
disabled: !this.state.disabled
})
}
render() {
const files = this.state.files.map(file => (
<li key={file.name}>
{file.name} - {file.size} bytes
</li>
))
return (
<section>
<aside>
<button
type="button"
onClick={this.toggleDisabled.bind(this)}
>
Toggle disabled
</button>
</aside>
<div className="dropzone">
<Dropzone
onDrop={this.onDrop.bind(this)}
>
{({getRootProps, getInputProps}) => (
<div {...getRootProps()}>
<input {...getInputProps()} />
<p>Drop files here, or click to select files</p>
</div>
)}
</Dropzone>
</div>
<aside>
<h4>Files</h4>
<ul>{files}</ul>
</aside>
</section>
);
}
}
<Basic />