import { Activity, BarChart3, Video } from 'lucide-react'; import { formatDateTime } from '../../../utils/format'; type OverviewViewProps = { edgeId: string; latestUpdatedAt?: Date; liveCount: number; totalTags: number; onOpenArchive: () => void; onOpenIndicators: () => void; onOpenVideo: () => void; }; export function OverviewView({ edgeId, latestUpdatedAt, liveCount, totalTags, onOpenArchive, onOpenIndicators, onOpenVideo }: OverviewViewProps) { return (
Всего показателей {totalTags}
Live {liveCount}
Архив 1
Последнее обновление {latestUpdatedAt ? formatDateTime(latestUpdatedAt) : '-'}
Разделы

{edgeId}

); }