turkmentv_front/utils/HydrateClient.tsx

10 lines
194 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
"use client";
import { Hydrate as RQHydrate, HydrateProps } from "@tanstack/react-query";
function Hydrate(props: HydrateProps) {
return <RQHydrate {...props} />;
}
export default Hydrate;