JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-controller="Ctrl">
    <div ng-repeat="num in myNumbers">
        <input type="text" ng-model="num" />
        <div>current scope: {{num}}</div>
    </div>
</div>

JavaScript

angular.module('myApp', [])
.controller('Ctrl', function($scope) {
    $scope.name = 'Hello';
    $scope.myNumbers = [10, 20, 30];
});