JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app>
     <table class="table" ng-controller="HomeController">
                        <th>Id</th>
                        <th>Title</th>
                        <th>Description</th>
                        <tr ng-repeat="item in items">
                            <td>{{item.id}}</td>
                            <td>{{item.title}}</td>
                            <td>{{item.description}}</td>
                         </tr>
    </table>
</div>

JavaScript

function HomeController($scope){
      $scope.items = [{"id":"1","title":"Test 1","description":"this is a description"}];

}