react-code-dataset
/
next.js
/test
/e2e
/app-dir
/cache-components-dynamic-imports
/external
/app
/layout.tsx
| import * as React from 'react' | |
| export default function Root({ children }: { children: React.ReactNode }) { | |
| return ( | |
| <html> | |
| <body>{children}</body> | |
| </html> | |
| ) | |
| } | |