react-code-dataset
/
next.js
/test
/production
/app-dir
/ppr-use-server-inserted-html
/app
/layout.tsx
| import React from 'react' | |
| export default async function Root({ | |
| children, | |
| }: { | |
| children: React.ReactNode | |
| }) { | |
| return ( | |
| <html> | |
| <body>{children}</body> | |
| </html> | |
| ) | |
| } | |