next.js/test/production/app-dir/ppr-use-server-inserted-html/app/layout.tsx
layout.tsx14 lines184 B
import React from 'react'

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