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