JSFiddle - React, Tailwind, and code Playground

by goldfingerxyz

HTML

<div ng-app ng-controller="MainCtrl">
    <ul>
        <li ng-repeat="num in nums">{{num}}</li>
    </ul>
</div>

JavaScript

function MainCtrl($scope) {
    $scope.nums = ["1", "2"];
}