next.js/test/e2e/app-dir/parallel-routes-catchall/app/layout.tsx
layout.tsx19 lines287 B
import React from 'react'

export default function Root({
  children,
  slot,
}: {
  children: React.ReactNode
  slot: React.ReactNode
}) {
  return (
    <html>
      <body>
        <div id="children">{children}</div>
        <div id="slot">{slot}</div>
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN