({prefix})
| 315 | const promiseD = Promise.resolve('D'); |
| 316 | |
| 317 | function Child({prefix}) { |
| 318 | return <Text text={prefix + use(promiseC) + use(promiseD)} />; |
| 319 | } |
| 320 | |
| 321 | function Parent() { |
| 322 | return <Child prefix={use(promiseA) + use(promiseB)} />; |
nothing calls this directly
no test coverage detected