(props)
| 3 | |
| 4 | export default class ProgressDemo extends Component { |
| 5 | constructor(props){ |
| 6 | super(props); |
| 7 | this.state = { |
| 8 | value: 30, |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | handleMinus(){ |
| 13 | let {value} = this.state; |
nothing calls this directly
no outgoing calls
no test coverage detected