import Dropzone from 'react-dropzone'; import React from 'react'; const METHODS_TO_BIND = ['handleOpenClick']; export default class AddTorrents extends React.Component { constructor() { super(); this.state = { files: null }; METHODS_TO_BIND.forEach((method) => { this[method] = this[method].bind(this); }); } handleFileDrop(files) { this.setState({files}); } render() { return (
Drop some files here, or click to browse.
); } }