mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-23 11:02:29 +00:00
nextauth
# What does this PR do? ## Test Plan
This commit is contained in:
parent
83c89265e0
commit
464b96cb09
23 changed files with 577 additions and 81 deletions
7
llama_stack/ui/components/providers/session-provider.tsx
Normal file
7
llama_stack/ui/components/providers/session-provider.tsx
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
"use client";
|
||||
|
||||
import { SessionProvider as NextAuthSessionProvider } from "next-auth/react";
|
||||
|
||||
export function SessionProvider({ children }: { children: React.ReactNode }) {
|
||||
return <NextAuthSessionProvider>{children}</NextAuthSessionProvider>;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue