ai-sdk-next-openai/app/use-chat-shared-context/layout.tsx
2025-09-26 15:46:29 +00:00

6 lines
178 B
TypeScript

import { ChatProvider } from './chat-context';
export default function Layout({ children }: { children: React.ReactNode }) {
return <ChatProvider>{children}</ChatProvider>;
}