next.js/test/e2e/app-dir/ppr-root-param-rsc-fallback/app/layout.tsx
layout.tsx10 lines196 B
import type { ReactNode } from 'react'

export default function RootLayout({ children }: { children: ReactNode }) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN