(innerElement, wrapperComponent)
| 84 | } |
| 85 | |
| 86 | function wrapUiIfNeeded(innerElement, wrapperComponent) { |
| 87 | return wrapperComponent |
| 88 | ? React.createElement(wrapperComponent, null, innerElement) |
| 89 | : innerElement |
| 90 | } |
| 91 | |
| 92 | function createConcurrentRoot( |
| 93 | container, |
no outgoing calls
no test coverage detected
searching dependent graphs…