(index)
| 16 | }, |
| 17 | |
| 18 | handleItemClick(index){ |
| 19 | const {onChange} = this.props; |
| 20 | if (onChange) onChange(index); |
| 21 | this.setState({ |
| 22 | current: index, |
| 23 | }); |
| 24 | }, |
| 25 | |
| 26 | componentWillReceiveProps(nextProps) { |
| 27 | const {current} = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…