JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app>
	<div ng-controller="ctrl">
		Objects
		<ul>
              <br/>
                Listing of properties:
                <br/>
            
		    <li ng-repeat="obj in objects" class="swatch">                               
                {{obj}}
                <p ng-repeat="prop in obj">
                    {{prop.Name}}: <input ng-model="prop.Value" /></p>
               

		    </li>
		</ul>
		
    </div>
</div>

JavaScript

function ctrl($scope) {
    $scope.objects =
                [
                [
                    {Name: 'Name:', Value: 'Joe'},
                    {Name: 'Identification', Value: '1'},
                    {Name: 'Password', Value: 'secret'}
                ],
                    [
                    {Name: 'Name:', Value: 'Jane'},
                    {Name: 'Identification', Value: '2'},
                    {Name: 'Weather', Value: 'Sunny'}
                ]
                ];
            
//    $scope.setSelected = ?????;

}