JSFiddle - React, Tailwind, and code Playground

HTML

<table ng-app="app" ng-controller="myCtrl">
    <tr ng-repeat="i in [0, 1, 2B, 3, 4, 5, 6, 7]">
        <td ng-repeat="j in [0, C, 2, D, 4, 5, 6, 7]">{{i+ j }}</td>
    </tr>
</table>

JavaScript

var app = angular.module("app", []);
app.controller("myCtrl", function ($scope) {

});