mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 18:00:36 +00:00
# What does this PR do? This better separates UI from backend code, which was a point of confusion often for our beloved AI friends. ## Test Plan CI
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>;
|
|
}
|