mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-23 05:12:26 +00:00
7 lines
247 B
TypeScript
7 lines
247 B
TypeScript
"use client";
|
|
|
|
import { SessionProvider as NextAuthSessionProvider } from "next-auth/react";
|
|
|
|
export function SessionProvider({ children }: { children: React.ReactNode }) {
|
|
return <NextAuthSessionProvider>{children}</NextAuthSessionProvider>;
|
|
}
|