10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
|
import { QueryClient } from 'react-query'
|
||
|
|
||
|
export const queryClient = new QueryClient({
|
||
|
defaultOptions: {
|
||
|
queries: {
|
||
|
notifyOnChangeProps: 'tracked',
|
||
|
},
|
||
|
},
|
||
|
})
|