(date)
| 27 | }, |
| 28 | |
| 29 | handleClick(date){ |
| 30 | const value = date2DateStr(date); |
| 31 | this.setState({ |
| 32 | value, |
| 33 | }); |
| 34 | if (this.props.onChange) this.props.onChange(value) |
| 35 | }, |
| 36 | |
| 37 | dateParams(){ |
| 38 | const {begin, end} = this.props; |
nothing calls this directly
no test coverage detected
searching dependent graphs…