so currently I am trying to upload a file, and save it on the Google Clouds. But I am stuck at how to get the input file using React-Redux.
Basically, my back-end pa
You cant handle onChange file by method
handleChangeFile(event) { const file = event.target.files[0]; let formData = new FormData(); formData.append('file', file); //Make a request to server and send formData }