"use client"; import Link from "next/link"; import { RECENT_UPDATES } from "@/app/data/vip.mock"; import styles from "../vip.module.css"; export function RecentUpdates() { return (

最近更新

{RECENT_UPDATES.map((item) => { const content = (
{item.title} {item.date}
); if (item.href) { return ( {content} ); } return
{content}
; })}
); }