JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-controller="ctlr">
<table>
<thead>
<th>A</th>
<th>B</th>
</thead>
<tbody>
<tr ng-repeat="d in data">
<td>{{d.a}}</td>
<td>{{d.b}}</td>
</tr>
</tbody>
</table>
</div>
JavaScript
angular.module('app', []).controler('ctlr', ['$scope', function ($scope) {
angular.extend($scope, {
data: [
{a: 'a1', b: 'b1'},
{a: 'a2', b: 'b2'}]
});
}]);