JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app='myApp'>
<div ng-controller="AppController">
<div ng-repeat="step in steps">
<p> {{step.name}}: {{step.status}}</p>
</div>
</div>
JavaScript
var myApp = angular.module('myApp', []);
myApp.controller('AppController', function ($scope) {
$scope.steps = [
{name: "companyName", status: true},
{name: "businessType", status: true},
{name: "physicalAddress", status: true}
];
console.log("loaded");
});