Created
March 14, 2016 12:55
-
-
Save stepancar/c2c54d1e4709ecc09f94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react'; | |
import * as Dropzone from 'react-dropzone'; | |
class DropzoneDemo extends React.Component<{}, {}> { | |
onDrop(files) { | |
console.log('Received files: ', files); | |
} | |
render() { | |
return ( | |
<div> | |
<Dropzone onDrop={this.onDrop}> | |
<div>Try dropping some files here, or click to select files to upload.</div> | |
</Dropzone> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment