({ children }: { children: React.ReactNode })
| 151 | } |
| 152 | |
| 153 | function Prefetch({ children }: { children: React.ReactNode }) { |
| 154 | usePrefetchQuery(queryOpts) |
| 155 | return <>{children}</> |
| 156 | } |
| 157 | |
| 158 | function Page() { |
| 159 | const state = useSuspenseQuery(queryOpts) |
nothing calls this directly
no test coverage detected