next.js/test/e2e/app-dir/css-client-side-nav-parallel-routes/app/layout.tsx
layout.tsx17 lines217 B
export default function Root({
  children,
  modal,
}: {
  children: React.ReactNode
  modal: React.ReactNode
}) {
  return (
    <html>
      <body>
        {children}
        {modal}
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN