next.js/test/production/app-dir/use-cache-cross-deployment/app/layout.tsx
layout.tsx17 lines243 B
import { Suspense } from 'react'

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