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