"use client" import { useState } from "react" import { ChevronLeft, Edit2, RefreshCw } from "lucide-react" import { Button } from "@/components/ui/button" import { Card } from "@/components/ui/card" import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table" interface MomentContent { id: string type: string content: string images: string[] publishTime: string pushTime: string status: "已发送" | "待发送" | "已终止" } const mockData: MomentContent[] = [ { id: "399401", type: "图文", content: "一定要把安全意识这件事情,刻在DNA里......", images: [ "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-Z8LxL98X5Bwm5Jr5ke3755Qd97PSYC.png", "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-Z8LxL98X5Bwm5Jr5ke3755Qd97PSYC.png", "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-Z8LxL98X5Bwm5Jr5ke3755Qd97PSYC.png", ], publishTime: "2025-02-15 23:37:49", pushTime: "2025-02-16 08:50:36", status: "已发送", }, ] export default function MomentsSyncViewPage() { const [syncName] = useState("同步卡若主号") return (