// app/providers.jsx 'use client' import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { useState } from 'react' export default function Providers({ children }: any) { const [queryClient] = useState(() => new QueryClient()) return ( {children} ) }