| 31 | } |
| 32 | |
| 33 | class WrapperComponent<P, S> extends Component<P, S> { |
| 34 | getChildContext () { |
| 35 | // tslint:disable-next-line |
| 36 | return this.props.context |
| 37 | } |
| 38 | |
| 39 | render () { |
| 40 | return this.props.children |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | export function unstable_renderSubtreeIntoContainer ( |
| 45 | parentComponent, |
nothing calls this directly
no outgoing calls
no test coverage detected