Allow selecting multiple files in file input

master
Torjus 2018-07-27 11:20:14 +02:00
parent 088f3ccc7c
commit 2cf1ea5069
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class FileSharing extends Component
render() render()
{ {
return ( return (
<input type='file' onChange={this.handleFileChange} /> <input type='file' onChange={this.handleFileChange} multiple />
); );
} }
} }