next.js/test/e2e/app-dir/chunk-loading/app/layout.tsx
layout.tsx22 lines334 B
import { Links } from '../components/links'

export const metadata = {
  title: 'Next.js',
  description: 'Generated by Next.js',
}

export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html lang="en">
      <body>
        {children}
        <Links />
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN