codeverse / components /auth /AuthProvider.tsx
shubhjn's picture
deploy
5a0b87c
raw
history blame contribute delete
201 Bytes
"use client";
import { SessionProvider } from "next-auth/react";
export function AuthProvider({ children }: { children: React.ReactNode }) {
return <SessionProvider>{children}</SessionProvider>;
}