Hello! I am currently learning about reactjs
and experimenting with creating a component that utilizes the functionality of react-dropzone.
I have a question regarding how to customize the drop area's styling by overriding the default settings.
At the moment, I have implemented an 'inline style', but I feel like there might be a more optimal approach that I am missing out on.
<Row>
<Jumbotron className="text-center">
<h4>Create a manual call</h4>
<Dropzone
className=""
multiple={false}
onDrop={this.onDrop}
style={{"width" : "100%", "height" : "20%", "border" : "1px solid black"}}>
<div>
Try dropping some files here, or click to select files to upload.
</div>
</Dropzone>
</Jumbotron>
</Row>
If you have any suggestions or insights on a better way to handle this, please do share!
Thank you in advance for your help!