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