react-code-dataset / next.js /test /production /app-dir /empty-generate-static-params /app /layout.tsx
| import { ReactNode, Suspense } from 'react' | |
| export default function Root({ children }: { children: ReactNode }) { | |
| return ( | |
| <html> | |
| <body> | |
| <Suspense>{children}</Suspense> | |
| </body> | |
| </html> | |
| ) | |
| } | |