JSFiddle - React, Tailwind, and code Playground
by Adambasszer
HTML
<script src="https://code.angularjs.org/1.3.9/angular.js"></script>
<div ng-controller="MyCtrl" ng-app="myApp">
<input type="checkbox" ng-repeat="(key,value) in groups">{{value}}</input>
</div>
JavaScript
var myApp = angular.module('myApp', []);
myApp.controller('MyCtrl', ['$scope', function ($scope) {
$scope.groups = ['asd', 'fgh', "jkl", "qwe"];
console.log("xxxx");
}]);