()
| 35 | } |
| 36 | |
| 37 | componentWillMount () { |
| 38 | this._isMounted = true; |
| 39 | let { data, fetch } = this.props; |
| 40 | if (data) { |
| 41 | this.handleData(data); |
| 42 | } |
| 43 | if (fetch) { |
| 44 | this.fetchData(fetch); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | componentDidMount () { |
| 49 | let component = this.component; |
nothing calls this directly
no test coverage detected