Table is just a mapping of objects to table rows with @for

@for (country of countries; track country.name; let i = $index) { }
# Country Area Population
{{ i + 1 }} {{ country.name }} {{ country.area | number }} {{ country.population | number }}