next.js/test/e2e/app-dir/metadata-navigation/app/parallel-route/layout.tsx
layout.tsx18 lines313 B
export default function Layout({ children, header }) {
  return (
    <html>
      <head></head>
      <body>
        {header}
        {children}
      </body>
    </html>
  )
}

export const metadata = {
  title: 'Home Layout',
  description: 'this is the layout description',
  keywords: ['nextjs', 'react'],
}
Quest for Codev2.0.0
/
SIGN IN