JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app='myApp'>
    <div ng-controller="AppController">

      <div ng-repeat="(f1, f2) in steps">
        <p> {{f1}} : {{f2}} </p> 
    </div>
</div>

JavaScript

var myApp = angular.module('myApp', []);
myApp.controller('AppController', function ($scope) {
    $scope.steps = {
     companyName: true,
     businessType: true,
     physicalAddress: true
};
    console.log("loaded");
});