--- import Tag from './Tag.astro' interface Props { pubDate: Date slug: string title: string tags: { name: string, slug: string }[] } const { pubDate, slug, title, tags } = Astro.props ---
{pubDate.toLocaleDateString("ru", {year: "numeric", month: "long", day: "numeric"})}
{ title } {tags.map(tag => )}