react-code-dataset
/
next.js
/test
/development
/app-dir
/error-overlay
/async-client-component
/app
/layout.tsx
| export default function RootLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode | |
| }) { | |
| return ( | |
| <html> | |
| <body>{children}</body> | |
| </html> | |
| ) | |
| } | |