--- interface Fact { label: string; value: string; } interface Props { facts: Fact[]; summary: string; ariaLabel?: string; } const { facts, summary, ariaLabel = 'Snelle feiten' } = Astro.props; ---

{summary}

{facts.map(fact => (
{fact.label}:
{fact.value}
))}