import { cookies } from 'next/headers' import { DebugLinkAccordion } from '../../../components/link-accordion' import { Suspense } from 'react' // No `export const unstable_instant = ...` is needed, we default to static // (but see page description for more on the actual behavior) export default function Page() { return (

Child of a runtime prefetchable layout

When this page is prefetched from outside of the{' '} /segment-config/runtime-prefetchable segment, the page contents will be runtime-prefetched (despite this segment not being marked as runtime-prefetchable) because the parent layout is marked as runtime-prefetchable.

) } async function RuntimePrefetchable() { await cookies() return (
Runtime-prefetchable content from page
) }