next.js/test/e2e/app-dir/parallel-routes-not-found/app/layout.tsx
layout.tsx21 lines299 B
export default function Layout({
  children,
  slot,
}: {
  children: React.ReactNode
  slot: React.ReactNode
}) {
  return (
    <html lang="en" className="layout">
      <body>
        {children}
        {slot}
      </body>
    </html>
  )
}

export const metadata = {
  title: 'layout title',
}
Quest for Codev2.0.0
/
SIGN IN