next.js/test/e2e/app-dir/cache-components-bot-ua/app/layout.tsx
layout.tsx23 lines443 B
import React, { Suspense } from 'react'
import type { Metadata } from 'next'

export const metadata: Metadata = {
  title: 'PPR Bot SSG Bypass Test',
  description:
    'Test bot static generation bypass with PPR and cache components',
}

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