Bootstrap 4 Component - Dropzone
npm install bootstrap4c-dropzoneThe Bootstrap4C Dropzone is a simple Bootstrap 4 stylesheet component for the brilliant DropzoneJS library (http://www.dropzonejs.com).
See demo here => https://haubek.github.io
```
yarn add bootstrap4c-dropzone
``
``
```
Dropzone.autoDiscover = false;
jQuery(document).ready(function() {
$("#dropzone").dropzone({
url: "/file/post",
dictDefaultMessage: "Drop files here or
click to upload..."
});
});