"use client" import { QueryClient, QueryClientProvider } from "@tanstack/react-query" import { useState, type ReactNode } from "react" export function QueryProvider({ children }: { children: ReactNode }) { const [client] = useState(() => new QueryClient()) return {children} }