(nextProps, nextState)
| 233 | } |
| 234 | |
| 235 | shouldComponentUpdate(nextProps, nextState) { |
| 236 | return this.state.data !== nextState.data || !shallowEqual(this.props, nextProps) |
| 237 | } |
| 238 | |
| 239 | componentWillUnmount() { |
| 240 | this.clearAllRefreshTimeouts() |
nothing calls this directly
no test coverage detected