()
| 92 | } |
| 93 | |
| 94 | function App() { |
| 95 | return ( |
| 96 | <div> |
| 97 | <Yield id="A" /> |
| 98 | <Yield id="B" /> |
| 99 | <BadRender /> |
| 100 | <Yield id="C" /> |
| 101 | <Yield id="D" /> |
| 102 | </div> |
| 103 | ); |
| 104 | } |
| 105 | |
| 106 | const root = ReactNoop.createRoot(); |
| 107 | root.render(<App />); |
nothing calls this directly
no test coverage detected