stargaze-studio/config/react-query.ts

10 lines
176 B
TypeScript
Raw Normal View History

2022-07-13 13:56:36 +00:00
import { QueryClient } from 'react-query'
export const queryClient = new QueryClient({
defaultOptions: {
queries: {
notifyOnChangeProps: 'tracked',
},
},
})