react-code-dataset
/
next.js
/packages
/create-next-app
/templates
/app-tw-empty
/js
/app
/layout.js
| 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>{children}</body> | |
| </html> | |
| ); | |
| } | |