import React from 'react'; class DragTarget extends React.Component { constructor(props) { super(props); this.handleDrop = this.handleDrop.bind(this); } supress(e) { e.stopPropagation(); e.preventDefault(); } handleDrop(e) { this.supress(e); this.props.handleFiles(e.dataTransfer.files); } render() { return
{this.props.children}
; } } module.exports = DragTarget;