next.js/test/e2e/app-dir/nx-handling/apps/next-nx-test/app/layout.tsx
layout.tsx19 lines294 B
import './global.css'

export const metadata = {
  title: 'Welcome to ',
  description: 'Generated by create-nx-workspace',
}

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