(date=this.props.value)
| 21 | }, |
| 22 | |
| 23 | initDate(date=this.props.value){ |
| 24 | const {year, month, day} = dateStr2Obj(date, this.dateParams()); |
| 25 | const value = obj2DateStr(year, month, day); |
| 26 | return {year, month, day, value} |
| 27 | }, |
| 28 | |
| 29 | handleClick(date){ |
| 30 | const value = date2DateStr(date); |
nothing calls this directly
no test coverage detected
searching dependent graphs…