JSFiddle - React, Tailwind, and code Playground
by BraveOstrich
HTML
<body ng-app>
<div ng-repeat="entity in getEntities()">
Hello {{entity.id}}!
</div>
</body>
JavaScript
function Main($scope) {
$scope.getEntities = function(){return [{id:'angularjs'}];};
};