()
| 19 | } |
| 20 | |
| 21 | handlePlus(){ |
| 22 | let {value} = this.state; |
| 23 | value += 10; |
| 24 | if (value > 100) value = 100; |
| 25 | this.setState({ |
| 26 | value |
| 27 | }); |
| 28 | } |
| 29 | |
| 30 | render() { |
| 31 | const {value} = this.state; |
nothing calls this directly
no outgoing calls
no test coverage detected