JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app ng-controller="MyCtrl">
<ul>
<li ng-repeat="(name, age) in items">{{name}}: {{age}}</li>
</ul>
</div>
JavaScript
function MyCtrl($scope) {
$scope.items = {'adam':10, 'amalie':12};
}