I'm having difficulty on getting all the file name I dropped; I only get the first dropped item name but I needed all the names so i can upload it all. Here is the sample of my dropzone:
onDrop(acceptedFiles) {
debugger
console.log('Received files: ', acceptedFiles);
this.setState({files: acceptedFiles});
let {form} = this.props.timeline;
acceptedFiles.map(file => {
form.Name=file.name
});
}

acceptedFilesand then you assign the form.name again for each item. This will result that yourform.Namewill always be the same as the last item's name in theacceptedFilescollection.