(nextProps)
| 38 | } |
| 39 | |
| 40 | componentWillReceiveProps (nextProps) { |
| 41 | if (!shallowEqual(this.props, nextProps)) { |
| 42 | this.setItems(nextProps); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | shouldComponentUpdate (nextProps, nextState) { |
| 47 | if (!shallowEqual(this.props, nextProps)) { |
nothing calls this directly
no test coverage detected