next.js/test/e2e/app-dir/ppr-partial-hydration/app/without-shell/layout.tsx
layout.tsx16 lines248 B
import { Suspense } from 'react'

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