(hour)
| 50 | }, |
| 51 | |
| 52 | handleHourChange(hour){ |
| 53 | const {min, sec} = this.state; |
| 54 | this.setState({ |
| 55 | hour, |
| 56 | value: this.formatValue(hour, min, sec) |
| 57 | }, this.handleTimeChange); |
| 58 | }, |
| 59 | |
| 60 | handleMinChange(min){ |
| 61 | const {hour, sec} = this.state; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…