JSFiddle - React, Tailwind, and code Playground

by prime

HTML

<div ng-app="" ng-controller="SimpleController">
		Name : 
		<input type="text" data-ng-model="name" />{{name}}
    
       <ul>
			<li data-ng-repeat="cust in customers | filter :name | orderBy:'city'">{{cust.name | uppercase}} - {{cust.city}}</li>
		</ul>
</div>

JavaScript

function SimpleController($scope){
			$scope.customers = [
			{name :'Kamal',city : 'York'},
			{name : 'Sunil',city:'DC'},
			{name : 'Malith',city:'Gotham'}
			];
		}