(innerElement, reactStrictMode)
| 78 | const mountedRootEntries = [] |
| 79 | |
| 80 | function strictModeIfNeeded(innerElement, reactStrictMode) { |
| 81 | return reactStrictMode ?? getConfig().reactStrictMode |
| 82 | ? React.createElement(React.StrictMode, null, innerElement) |
| 83 | : innerElement |
| 84 | } |
| 85 | |
| 86 | function wrapUiIfNeeded(innerElement, wrapperComponent) { |
| 87 | return wrapperComponent |
no test coverage detected
searching dependent graphs…