import type { Metadata } from "next"; import { MyRuntimeProvider } from "@/app/MyRuntimeProvider"; import "./globals.css"; export const metadata: Metadata = { title: "assistant-ui virtualized thread", description: "Long threads with @tanstack/react-virtual", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }