mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
6 lines
170 B
TypeScript
6 lines
170 B
TypeScript
import { QueryClient } from 'react-query'
|
|
|
|
const queryClient = new QueryClient({ defaultOptions: { queries: { staleTime: 1000 * 60 * 5 } } })
|
|
|
|
export default queryClient
|