"use client"; export interface ChangelogEntry { version: string; date: string; changes: string[]; } interface BlockChangelogProps { changelog: ChangelogEntry[]; } export function BlockChangelog({ changelog }: BlockChangelogProps) { if (!changelog || changelog.length === 0) return null; return (

История версий

{changelog.map((entry) => (

{entry.version} — {entry.date}

    {entry.changes.map((change, i) => (
  • {change}
  • ))}
))}
); }