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

19 lines
341 B
TypeScript

import './globals.css';
export const metadata = {
title: 'AI SDK - Next.js OpenAI Examples',
description: 'Examples of using the AI SDK with Next.js and OpenAI.',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}