JSFiddle - React, Tailwind, and code Playground

by hephistocles

HTML

<div ng-ap ng-controller="MainCtrl">
    <table>
        <tr ng-repeat='row in rows'><td>row</td></tr>
    </table>
        </div>

JavaScript

angular.module('theApp')
  .controller('MainCtrl', function ($scope, $http, socket) {
    $scope.rows=[1,2,3]
    $scope.games= ['a','b','c'];
    $scope.idHoveredTD = null;
});