import { unstable_cache } from 'next/cache' import { Suspense } from 'react' const getData = unstable_cache( async (cache) => { const res = await fetch( 'https://next-data-api-endpoint.vercel.app/api/random', { cache } ) return res.text() }, undefined, {} ) async function Data({ cache = undefined }) { const data = await getData(cache) return