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