Components
Stats
The Stats component allows you to display a list of stats. It can be used to display a list of metrics, KPIs, etc.
Targets
Experience Builder SitesExample

Data Structure
{
title: string,
description?: string,
stats: [
{
label: string,
value: string
}
]
}
title- The title to display.descriptionOptional - The description to display.stats- List of stats to display. Each stat should be a map with the following format:label- The name of the stat.value- The value of the stat.