11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
import { QueryClient } from "@tanstack/react-query";
|
|
|
|
const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
retry: 2,
|
|
},
|
|
},
|
|
})
|
|
|
|
export default queryClient; |