next.js/test/e2e/app-dir/use-cache/app/(partially-static)/method-props/cached.ts
cached.ts11 lines183 B
export function createCached(n: number) {
  return {
    async getRandomValue() {
      'use cache'
      const v = n + Math.random()
      console.log(v)
      return v
    },
  }
}
Quest for Codev2.0.0
/
SIGN IN