react-code-dataset / next.js /test /e2e /app-dir /app-client-cache /fixtures /regular /app /layout.js
| export default function Root({ children }) { | |
| return ( | |
| <html> | |
| <head></head> | |
| <body> | |
| <div id="root-layout">Root Layout</div> | |
| <div>{children}</div> | |
| </body> | |
| </html> | |
| ) | |
| } | |