Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

react query dev tools

import { ReactQueryDevtools } from 'react-query/devtools'

<QueryClientProvider client={queryClient}>
    {/* The rest of your application */}
    <ReactQueryDevtoolsPanel initialIsOpen={false} />
</QueryClientProvider>

// By default this is only included in bundles when node env equals dev,
// so no need to worry about excluding it from production builds.
Comment

React Query DevTools

 import { ReactQueryDevtools } from 'react-query/devtools'
 
 function App() {
   return (
     <QueryClientProvider client={queryClient}>
       {/* The rest of your application */}
       <ReactQueryDevtools initialIsOpen={false} />
     </QueryClientProvider>
   )
 }
Comment

PREVIOUS NEXT
Code Example
Javascript :: how to convert to one decimal place javascript 
Javascript :: nuxt js emit event 
Javascript :: how to run nextjs in another port 
Javascript :: js poll dom 
Javascript :: xhr 
Javascript :: js check tab active 
Javascript :: factorial function javascript 
Javascript :: how to run a function when the window is closing javascript 
Javascript :: react native scrollview detect end 
Javascript :: js get date in ms 
Javascript :: factorial of number js 
Javascript :: react onclick div 
Javascript :: livewire progress indicators javascript 
Javascript :: javascript download csv 
Javascript :: materialize for react 
Javascript :: jquery validation phone number 
Javascript :: js replace all symbols in string 
Javascript :: how to change tab color react bootstraps customixation 
Javascript :: generate random whole number between 2 javascript 
Javascript :: how to find out which version of react 
Javascript :: classlist js 
Javascript :: postcss.config.js 
Javascript :: xmlhttprequest get request 
Javascript :: discord.js add button to message 
Javascript :: JS append content into a DOM element 
Javascript :: mysql connection in node js 
Javascript :: javascript insert before 
Javascript :: combinereducers 
Javascript :: unique string id js 
Javascript :: javascript negative infinity 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =