17 lines
462 B
TypeScript
17 lines
462 B
TypeScript
"use client";
|
|
|
|
import { ConvexAuthNextjsProvider } from "@convex-dev/auth/nextjs";
|
|
import { ConvexReactClient } from "convex/react";
|
|
import type { ReactNode } from "react";
|
|
import { env } from '@/env';
|
|
|
|
const convex = new ConvexReactClient(env.NEXT_PUBLIC_CONVEX_URL);
|
|
|
|
export function ConvexClientProvider({ children }: { children: ReactNode }) {
|
|
return (
|
|
<ConvexAuthNextjsProvider client={convex}>
|
|
{children}
|
|
</ConvexAuthNextjsProvider>
|
|
);
|
|
}
|