next.js/test/e2e/app-dir/cache-components/app/layout.tsx
layout.tsx13 lines282 B
import { getSentinelValue } from './getSentinelValue'

export default function Root({ children }: { children: React.ReactNode }) {
  return (
    <html>
      <body>
        <main>{children}</main>
        <div id="layout">{getSentinelValue()}</div>
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN