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