import { cookies } from 'next/headers' export const unstable_instant = { prefetch: 'runtime', samples: [{ cookies: [] }], } export default async function RuntimeLayout({ children }) { await cookies() return (

The layout does not wrap children with Suspense.


{children}
) }