import { RefreshCw } from 'lucide-react';
import {
Badge,
Button,
PageShell,
Progress,
Section,
} from '@/ui';
const rows = [
{ name: '图片生成队列', status: '运行中', progress: 72 },
{ name: '视频转码任务', status: '等待中', progress: 18 },
{ name: '发布中心同步', status: '已完成', progress: 100 },
];
export function StatusPageTemplate() {
return (
}>刷新}
>
{rows.map((row) => (
{row.name}
{row.progress}%
{row.status}
))}
);
}