(props, context)
| 2270 | |
| 2271 | // return rendered component from a stateless |
| 2272 | const IndeterminateComponent = (props, context) => { |
| 2273 | const instance = new CurrentApp(props, context); |
| 2274 | IndeterminateComponent.getDerivedStateFromProps = CurrentApp.getDerivedStateFromProps; |
| 2275 | return instance; |
| 2276 | }; |
| 2277 | |
| 2278 | if (withContext) { |
| 2279 | IndeterminateComponent.contextTypes = {}; |
nothing calls this directly
no outgoing calls
no test coverage detected