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