'use cache' import { Suspense } from 'react' import { getSentinelValue } from '../sentinel' export default async function Layout({ children }) { return (
Root Layout: {new Date().toISOString()} ({getSentinelValue()})

This page does not define any static params.

Loading...

}>{children}
) }