'use cache'
import { Suspense } from 'react'
import { getSentinelValue } from '../sentinel'
export default async function Layout({ children }) {
return (
<html>
<body>
<div id="root-layout">
Root Layout: {new Date().toISOString()} ({getSentinelValue()})
</div>
<p>
This page does <em>not</em> define any static params.
</p>
<Suspense fallback={<p>Loading...</p>}>{children}</Suspense>
</body>
</html>
)
}