9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
"use client";
|
|
|
|
import { createHydrateClient } from "app/_trpc/createHydrateClient";
|
|
import superjson from "superjson";
|
|
|
|
export const HydrateClient = createHydrateClient({
|
|
transformer: superjson,
|
|
});
|