Spaces:
Runtime error
Runtime error
File size: 262 Bytes
5881efa |
1 2 3 4 5 6 7 8 9 10 |
"use client";
import React from "react";
import { Hydrate as HydrationBoundary } from "@tanstack/react-query";
function Hydrate(props: { children: React.ReactNode }) {
return <HydrationBoundary>{props.children}</HydrationBoundary>;
}
export default Hydrate;
|