(props: { promise: Promise<string> })
| 40 | const renderStream = createRenderStream({ snapshotDOM: true }) |
| 41 | |
| 42 | function MyComponent(props: { promise: Promise<string> }) { |
| 43 | const data = React.use(props.promise) |
| 44 | useTrackRenders() |
| 45 | return <>{data}</> |
| 46 | } |
| 47 | |
| 48 | function Loading() { |
| 49 | useTrackRenders() |
nothing calls this directly
no test coverage detected
searching dependent graphs…