next.js/test/e2e/app-dir/parallel-routes-root-slot/app/layout.tsx
layout.tsx17 lines216 B
export default function Layout({
  children,
  slot,
}: {
  children: React.ReactNode
  slot: React.ReactNode
}) {
  return (
    <html>
      <body>
        {children}
        {slot}
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN