UNPKG

@kshrd/chatbotwidget

Version:

A Rchatbot widget for web applications built with Next.js

22 lines (16 loc) 323 B
import "./globals.css"; export const metadata = { title: "Create Next App", description: "Generated by create next app", }; export default function RootLayout({ children }) { return ( <html lang="en"> <body className={` antialiased`} > {children} </body> </html> ); }