JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app ng-controller="TestController">
    <div ng-repeat="item in list">
        <label>Input {{$index+1}}:</label>
        <input ng-model="item" type="text"/>
    </div>
    {{list}}
</div>

JavaScript

function TestController($scope) {
    $scope.list = [ 'value 1', 'value 2', 'value 3' ];
}