(nextProps, nextState)
| 72 | } |
| 73 | |
| 74 | shouldComponentUpdate (nextProps, nextState) { |
| 75 | return !shallowEqual(nextProps, this.props) || !shallowEqual(this.state, nextState); |
| 76 | } |
| 77 | |
| 78 | componentWillUnmount () { |
| 79 | const { itemUnbind, name } = this.props; |
nothing calls this directly
no test coverage detected