next.js/test/e2e/app-dir/catchall-parallel-routes-group/app/layout.tsx
layout.tsx15 lines270 B
import { ReactNode } from 'react'

export default function Root({ children }: { children: ReactNode }) {
  return (
    <html>
      <body>
        <div id="root-layout">
          <h1>Root Layout</h1>
          {children}
        </div>
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN