JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular.js"></script>
<div ng-app="myApp" ng-controller="DemoCtrl">
    <div class="alert alert-danger" ng-show="arr.length == 0">Пустой массив</div>
    <table class="table">
        <tr ng-repeat="name in arr">
            <td>{{name}}</td>
        </tr>
    </table>
</div>

JavaScript

var app = angular.module('myApp', []);

app.controller('DemoCtrl', function ($scope, $timeout) {

    $scope.arr = [];
    
    function populateArray () {
        $scope.arr = ['Igor', 'Misko', 'Brad'];
    }
    
    $timeout(populateArray, 3000);
});