()
| 50 | const unmountFunctions: Array<() => void | boolean> = []; |
| 51 | |
| 52 | function createContainer() { |
| 53 | const container = document.createElement('div'); |
| 54 | |
| 55 | ((document.body: any): HTMLBodyElement).appendChild(container); |
| 56 | |
| 57 | return container; |
| 58 | } |
| 59 | |
| 60 | function mountApp(App: () => React$Node) { |
| 61 | const container = createContainer(); |
no outgoing calls
no test coverage detected