turkmentv_front/utils/HydrateClient.tsx

10 lines
194 B
TypeScript

"use client";
import { Hydrate as RQHydrate, HydrateProps } from "@tanstack/react-query";
function Hydrate(props: HydrateProps) {
return <RQHydrate {...props} />;
}
export default Hydrate;