UNPKG

@nadeshikon/plugin-nextjs

Version:
23 lines (19 loc) 533 B
import { cache, use } from 'react' export default function Page() { const getData = cache(() => fetch('https://example.vercel.sh', { cache: 'no-store', }) .then((res) => res.text()) .then((text) => new Promise((res) => setTimeout(() => res(text), 1000))) ) const dataPromise = getData() const data = use(dataPromise) return ( <> <p id="page">/ssr-auto/cache-no-store</p> <div id="example-dat">{data}</div> <p id="date">{Date.now()}</p> </> ) }