({ children }: { children?: VNode })
| 269 | } |
| 270 | |
| 271 | function SecondQuery({ children }: { children?: VNode }) { |
| 272 | const state = useSuspenseQuery(secondQueryOpts) |
| 273 | return ( |
| 274 | <div> |
| 275 | <div>data: {String(state.data)}</div> |
| 276 | {children} |
| 277 | </div> |
| 278 | ) |
| 279 | } |
| 280 | |
| 281 | function ThirdQuery() { |
| 282 | const state = useSuspenseQuery(thirdQueryOpts) |
nothing calls this directly
no test coverage detected