component MetricGrid { props { label = "Key metrics" metrics = [] class = "" } view {
{#each metrics as metric}

{metric.value}

{metric.label}

{metric.description}

{/each}
} }