()
| 279 | } |
| 280 | |
| 281 | function ThirdQuery() { |
| 282 | const state = useSuspenseQuery(thirdQueryOpts) |
| 283 | return <div>data: {String(state.data)}</div> |
| 284 | } |
| 285 | |
| 286 | function App() { |
| 287 | usePrefetchQuery(firstQueryOpts) |
nothing calls this directly
no test coverage detected