()
| 47 | const Fallback = () => <h1 data-testid="fallback">Fallback</h1>; |
| 48 | |
| 49 | const Comp = () => { |
| 50 | useObservable('perf-test-1', o$, { suspense: true }); |
| 51 | |
| 52 | return <h1 data-testid="child">Actual</h1>; |
| 53 | }; |
| 54 | |
| 55 | const SuspenseComp = () => { |
| 56 | return ( |
nothing calls this directly
no test coverage detected