@if (loading() && sections().length === 0) {

Loading statistics...

} @if (error()) {
Could not connect to ApexStore API

Make sure the backend is running on {{ apiUrl }}

} @if (sections().length > 0) {
@for (section of sections(); track section.label) {
@for (item of section.data | keyvalue; track item.key) {
{{ item.key }} {{ formatValue(item.value) }}
}
}
Raw JSON Response
{{ rawData() | json }}
}