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