()
| 35 | } |
| 36 | |
| 37 | render() { |
| 38 | const {AsyncComponent} = this.state; |
| 39 | const {LoadingComponent} = this; |
| 40 | if (AsyncComponent) return <AsyncComponent {...this.props} />; |
| 41 | |
| 42 | return <LoadingComponent {...this.props} />; |
| 43 | } |
| 44 | }; |
| 45 | } |
| 46 |
nothing calls this directly
no outgoing calls
no test coverage detected