JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app="MyApp">
<div ng-controller="MyController">
<table>
<thead>
<tr>
<td>Platform</td>
<td>Lob</td>
<td>Name</td>
</tr>
</thead>
<tbody>
<tr ng-repeat="var user in users">
</tr>
</tbody>
</table>
</div>
</div>
CSS
table { border-collapse: collapse; }
td { border: 1px solid Black; }
JavaScript
var app = angular.module('MyApp', []);
app.controller('MyController', function ($scope) {
var users = [
{
platform:1,
lob:2,
name:"sowmiya"
},
{
platform:1,
lob:2,
name:"sowmiya b"
}
];
$scope.users = users;
});