({ children }: { children: React.ReactNode })
| 153 | } |
| 154 | |
| 155 | function Prefetch({ children }: { children: React.ReactNode }) { |
| 156 | usePrefetchQuery(queryOpts) |
| 157 | return <>{children}</> |
| 158 | } |
| 159 | |
| 160 | function App() { |
| 161 | return ( |
nothing calls this directly
no test coverage detected