import type { PropsWithChildren } from "react"; import { QueryClientProvider } from "@tanstack/react-query"; import { queryClient } from "../queryClient"; export function QueryProvider({ children }: PropsWithChildren) { return {children}; }