JSFiddle - React, Tailwind, and code Playground

by dschu012

HTML

<div ng-app ng-controller="MyCtrl">
    <div class="row" ng-repeat="item in array">
        <div class="item" ng-repeat="(key, value) in item">{{key}}: {{value}}</li>
    </div>
</div>

JavaScript

function MyCtrl($scope) {
    var $scope.array = [
    {
        "name" : "jeff",
        "occupation" : "developer",
        "skills" : [
            {"name" : "Ruby"}
        ]
    }
    ];
}