(min)
| 58 | }, |
| 59 | |
| 60 | handleMinChange(min){ |
| 61 | const {hour, sec} = this.state; |
| 62 | this.setState({ |
| 63 | min, |
| 64 | value: this.formatValue(hour, min, sec) |
| 65 | }, this.handleTimeChange); |
| 66 | }, |
| 67 | |
| 68 | handleSecChange(sec){ |
| 69 | const {hour, min} = this.state; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…