react-code-dataset
/
next.js
/test
/development
/app-dir
/cache-components-dev-errors
/app
/layout.tsx
| export default function Root({ children }: { children: React.ReactNode }) { | |
| return ( | |
| <html> | |
| <body> | |
| <main>{children}</main> | |
| </body> | |
| </html> | |
| ) | |
| } | |