Files
lcbp3/frontend/providers/session-provider.tsx
admin dcd126d704
Some checks failed
Spec Validation / validate-markdown (push) Has been cancelled
Spec Validation / validate-diagrams (push) Has been cancelled
Spec Validation / check-todos (push) Has been cancelled
251208:0010 Backend & Frontend Debug
2025-12-08 00:10:37 +07:00

15 lines
392 B
TypeScript

// File: providers/session-provider.tsx
"use client";
import { SessionProvider as NextAuthSessionProvider } from "next-auth/react";
import { AuthSync } from "@/components/auth/auth-sync";
export default function SessionProvider({ children }: { children: React.ReactNode }) {
return (
<NextAuthSessionProvider>
<AuthSync />
{children}
</NextAuthSessionProvider>
);
}