I have file upload input:
And I handle upload t
This work for me - ref={ref => this.fileInput = ref}
this._handleFileChange(e)} ref={ref=> this.fileInput = ref} />
then in my case once the file was uploaded to the server , I clear it by using the statement below
this.fileInput.value = "";