(props)
| 24 | export const fetchEnhance = (ComposedComponent) => { |
| 25 | class Fetch extends Component { |
| 26 | constructor (props) { |
| 27 | super(props); |
| 28 | |
| 29 | this.state = { |
| 30 | data: undefined, |
| 31 | fetchStatus: FETCH_SUCCESS |
| 32 | } |
| 33 | |
| 34 | this.getSelected = this.getSelected.bind(this) |
| 35 | } |
| 36 | |
| 37 | componentWillMount () { |
| 38 | this._isMounted = true; |
nothing calls this directly
no outgoing calls
no test coverage detected