next.js/test/e2e/app-dir/parallel-routes-revalidation/app/layout.tsx
layout.tsx25 lines424 B
import React from 'react'

export default function Root({
  children,
  dialog,
  interception,
}: {
  children: React.ReactNode
  dialog: React.ReactNode
  interception: React.ReactNode
}) {
  return (
    <html>
      <head>
        <script src="https://cdn.tailwindcss.com?plugins=typography"></script>
      </head>
      <body>
        {children}
        {dialog}
        {interception}
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN