Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 240 Bytes

File metadata and controls

14 lines (12 loc) · 240 Bytes

Basic

const client = new QueryClient({
  defaultOptions: {
    queries: {
      // Default staleTime 0 and cache will not have chance to be used
      staleTime: Infinity,
    },
  },
})

<QueryClientProvider client={client}>