JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app ng-controller="MyCtrl">
   
        
             <table style="width:50%">
              <tr>
                    <th>NAME</th>
                    <th>C1</th>
                    <th>C2</th>
              </tr>
        
        
           
            <tr ng-repeat="(name,age) in items">
                    <td>{{name}} </td>
                    <td> {{age.c1}}</td>		
                    <td> {{age.c2}}</td>
          </tr>
</table>

</div>

<table style="width:100%">
 


</table>

JavaScript

function MyCtrl($scope) {
    $scope.items = {
        'adam': {
            c1: "a",
            c2: "b"
        },
        'amalie': {
            c1: "c",
            c2: "d"
        }
    };
}