()
| 11 | const queryClient = new QueryClient() |
| 12 | |
| 13 | export default function App() { |
| 14 | return ( |
| 15 | <QueryClientProvider client={queryClient}> |
| 16 | <SolidQueryDevtools /> |
| 17 | <Example /> |
| 18 | </QueryClientProvider> |
| 19 | ) |
| 20 | } |
| 21 | |
| 22 | function Example() { |
| 23 | const state = useQuery(() => ({ |
nothing calls this directly
no outgoing calls
no test coverage detected