(props)
| 16 | |
| 17 | class Upload extends Component { |
| 18 | constructor (props) { |
| 19 | super(props); |
| 20 | this.state = { |
| 21 | files: {} |
| 22 | }; |
| 23 | this.addFile = this.addFile.bind(this); |
| 24 | this.files = {}; |
| 25 | } |
| 26 | |
| 27 | isCompleted () { |
| 28 | let completed = true, |
nothing calls this directly
no outgoing calls
no test coverage detected