next.js/test/e2e/app-dir/use-cache/app/(partially-static)/static-class-method/cached.ts
cached.ts9 lines138 B
export class Cached {
  static async getRandomValue() {
    'use cache'
    const v = Math.random()
    console.log(v)
    return v
  }
}
Quest for Codev2.0.0
/
SIGN IN