Skip to content

Instantly share code, notes, and snippets.

@stepancar
Created March 14, 2016 12:55
Show Gist options
  • Save stepancar/c2c54d1e4709ecc09f94 to your computer and use it in GitHub Desktop.
Save stepancar/c2c54d1e4709ecc09f94 to your computer and use it in GitHub Desktop.
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