react-code-dataset / next.js /test /development /app-dir /next-after-app-invalid-usage /basic /app /layout.js
| export default function AppLayout({ children }) { | |
| return ( | |
| <html> | |
| <head> | |
| <title>after</title> | |
| </head> | |
| <body>{children}</body> | |
| </html> | |
| ) | |
| } | |