16 lines
459 B
TypeScript
16 lines
459 B
TypeScript
"use client";
|
|
|
|
import { ConvexProvider, ConvexReactClient } from "convex/react";
|
|
import { ReactNode, useMemo } from "react";
|
|
|
|
const convexUrl = process.env.NEXT_PUBLIC_CONVEX_URL;
|
|
|
|
const client = convexUrl ? new ConvexReactClient(convexUrl) : undefined;
|
|
|
|
export function ConvexClientProvider({ children }: { children: ReactNode }) {
|
|
if (!convexUrl) {
|
|
return <>{children}</>;
|
|
}
|
|
return <ConvexProvider client={client!}>{children}</ConvexProvider>;
|
|
}
|
|
|