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

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