react-code-dataset
/
next.js
/test
/e2e
/app-dir
/app-prefetch-false-loading
/app
/[lang]
/testing
/layout.tsx
| import React from 'react' | |
| export default async function Root({ | |
| children, | |
| }: { | |
| children: React.ReactNode | |
| }) { | |
| return ( | |
| <div> | |
| Nested Layout | |
| {children} | |
| </div> | |
| ) | |
| } | |