import { Metadata } from 'next' import { Suspense } from 'react' import { cookies } from 'next/headers' export async function generateMetadata(): Promise { await cookies() return { title: 'Runtime-prefetchable title', } } async function Content() { await cookies() return
Target page
} export default function PageWithRuntimePrefetchableTitle() { return ( ) }