layout.tsx 460 B

123456789101112131415161718
  1. import type { Metadata } from "next";
  2. import "./globals.css";
  3. export const metadata: Metadata = {
  4. title: "json-render devtools",
  5. description:
  6. "Interactive devtools demo: AI-streamed json-render specs, one renderer per chat message, all inspected by the floating panel.",
  7. };
  8. export default function RootLayout({
  9. children,
  10. }: Readonly<{ children: React.ReactNode }>) {
  11. return (
  12. <html lang="en">
  13. <body>{children}</body>
  14. </html>
  15. );
  16. }