feat(front) react version start

This commit is contained in:
2026-05-31 19:43:11 -06:00
parent d769aab9e4
commit 767317e538
33 changed files with 5669 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { QueryClient } from '@tanstack/react-query'
export const queryClient = new QueryClient({
defaultOptions: {
queries: {
staleTime: 5 * 60 * 1000,
retry: 1,
},
},
})