import { cookies } from 'next/headers' import { Suspense } from 'react' import { DebugRenderKind } from '../../shared' export const unstable_instant = { prefetch: 'runtime', samples: [{ cookies: [] }], } export default async function Layout({ children }) { return (

Shared layout

This shared layout uses cookies and no uncached IO, so it should be completely runtime-prefetchable.


{children}
) } async function RuntimePrefetchable() { await cookies() return (
Runtime-prefetchable content from shared layout
) }