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