"use client"; import { ASSET_STATS } from "@/app/data/vip.mock"; import styles from "../vip.module.css"; const STAT_ITEMS = [ { key: "topics", label: "模块" }, { key: "ebooks", label: "电子书" }, { key: "videos", label: "视频" }, { key: "updateFrequency", label: "更新" }, ] as const; export function AssetStats() { return (
{STAT_ITEMS.map(({ key, label }, i) => { const value = key === "updateFrequency" ? ASSET_STATS[key] : String(ASSET_STATS[key as keyof typeof ASSET_STATS]); return (
{value}
{label}
); })}
); }