(props)
| 7 | @DragDropContext(HTML5Backend) |
| 8 | export default class Container extends Component { |
| 9 | constructor(props) { |
| 10 | super(props); |
| 11 | |
| 12 | this.handleFileDrop = this.handleFileDrop.bind(this); |
| 13 | |
| 14 | this.state = { droppedFiles: [] }; |
| 15 | } |
| 16 | |
| 17 | handleFileDrop(item, monitor) { |
| 18 | if (monitor) { |
nothing calls this directly
no outgoing calls
no test coverage detected