(props)
| 3 | |
| 4 | export default class TimeInputDemo extends React.Component { |
| 5 | constructor(props){ |
| 6 | super(props); |
| 7 | this.state = { |
| 8 | showTime: '13:12:31' |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | handleTimeChange(value){ |
| 13 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected