You can programmatically invoke default OS file prompt. In order to do that you'll have to set the ref on your `Dropzone` instance and call the instance `open` method. ``` let dropzoneRef;
{ dropzoneRef = node; }} onDrop={(accepted, rejected) => { alert(accepted) }}>

Drop files here.

``` The completion handler for the `open` function is also the `onDrop` function.