react-code-dataset / next.js /test /e2e /app-dir /app-basepath-custom-server /custom-server /app /layout.js
| import { Counter } from '../components/counter' | |
| export default function Root({ children }) { | |
| return ( | |
| <html> | |
| <body> | |
| <Counter /> | |
| {children} | |
| </body> | |
| </html> | |
| ) | |
| } | |