stargaze-studio/config/react-query.ts
2022-07-13 16:56:36 +03:00

10 lines
176 B
TypeScript

import { QueryClient } from 'react-query'
export const queryClient = new QueryClient({
defaultOptions: {
queries: {
notifyOnChangeProps: 'tracked',
},
},
})