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

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