JSFiddle - React, Tailwind, and code Playground
by Sunny SM
HTML
<h1>Angular test Application</h1>
<div ng-app="" ng-init="students = [{name:'Sunny Attwal',age:30,location:'Chandigarh'},{name:'Rahul Mahajan',age:32,location:'Chandigarh'},{name:'Rajni Mittal',age:20,location:'Delhi'}]">
<p>Enter your Name: <input type="text" ng-model="name"></p>
<p>your name is : <span ng-bind="name"></span></p>
<p>List of employee</p>
<table border="1" width="100%">
<tr ng-repeat = "student in students" >
<td>{{''+ student.name +''}}</td>
<td>{{''+ student.age +''}}</td>
<td>{{''+ student.location +''}}</td>
</tr>
</table>
</div>