()
| 485 | const Lazy = React.lazy(() => imports); |
| 486 | |
| 487 | const App = () => ( |
| 488 | <div> |
| 489 | <Suspense fallback={<span>Loading...</span>}> |
| 490 | <Lazy /> |
| 491 | <span id="after">after</span> |
| 492 | </Suspense> |
| 493 | </div> |
| 494 | ); |
| 495 | |
| 496 | return [App, resolve]; |
| 497 | }; |
nothing calls this directly
no test coverage detected