()
| 132 | } |
| 133 | |
| 134 | render () { |
| 135 | const { data, ...others } = this.props; |
| 136 | return ( |
| 137 | <ComposedComponent ref={(c) => this.component = c} data={this.state.data} fetchStatus={this.state.fetchStatus} {...others} /> |
| 138 | ); |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | Fetch.propTypes = { |
nothing calls this directly
no outgoing calls
no test coverage detected