Allow selecting multiple files in file input

This commit is contained in:
Torjus
2018-07-27 11:20:14 +02:00
parent 088f3ccc7c
commit 2cf1ea5069
+1 -1
View File
@@ -45,7 +45,7 @@ class FileSharing extends Component
render()
{
return (
<input type='file' onChange={this.handleFileChange} />
<input type='file' onChange={this.handleFileChange} multiple />
);
}
}