(nextProps)
| 58 | } |
| 59 | |
| 60 | componentWillReceiveProps (nextProps) { |
| 61 | if (!deepEqual(this.props.data, nextProps.data)) { |
| 62 | this.handleData(nextProps.data); |
| 63 | } |
| 64 | if (!deepEqual(this.props.fetch, nextProps.fetch)) { |
| 65 | this.fetchData(nextProps.fetch); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | componentWillUnmount () { |
| 70 | this._isMounted = false; |
nothing calls this directly
no test coverage detected