JSFiddle - React, Tailwind, and code Playground

by devitate

HTML

<div ng-app>
    <div ng-controller="Ctrl">
        <table border="1">
            <tr ng-repeat="item in items">
                <td ng-repeat="(k,v) in item">{{k}} {{v}}</td>
            </tr>
        </table>
    </div>
</div>

JavaScript

function Ctrl($scope, orderByFilter) {
  
    $scope.items =  [ 
      {a:1,b: 2,c:3}, 
      {a:3,b: 4,c:5}, 
      {a:1,b: 2,c:3}
    ];
}