react-code-dataset
/
next.js
/test
/development
/basic
/barrel-optimization
/fixture-tremor
/app
/layout.tsx
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode | |
| }>) { | |
| return ( | |
| <html lang="en"> | |
| <body>{children}</body> | |
| </html> | |
| ) | |
| } | |