react-code-dataset / next.js /test /development /app-dir /externalize-node-binary-browser-error /app /layout.tsx
| import { ReactNode } from 'react' | |
| export default function Root({ children }: { children: ReactNode }) { | |
| return ( | |
| <html> | |
| <body>{children}</body> | |
| </html> | |
| ) | |
| } | |