2019-03-25a few seconds read (About 27 words)How to handle file picker in ReactIssue #190 1234567891011121314render() { <Button color="inherit" onClick={this.onImagePress} >Image</Button> <input ref="fileInput" type="file" id="myFile" multiple accept="image/*" style={{display: 'none'}} onChange={this.handleFiles}></input>}onImagePress = () => { const fileInput = this.refs.fileInput fileInput.click()}handleFiles = (e) => { e.persist() const file = e.target.files[0]}#react