JSFiddle - React, Tailwind, and code Playground

by BraveOstrich

HTML

<body ng-app>
  <div ng-repeat="entity in getEntities()">
    Hello {{entity.id}}!
  </div>
  <div ng-repeat="entity in entities">
    Hello {{entity.id}}!
  </div>
</body>

JavaScript

function Main($scope) {
    $scope.entities = [{id:'angularjs'}];
    //$scope.getEntities = function(){return [{id:'angularjs'}];};
};