JSFiddle - React, Tailwind, and code Playground
by KARTHIKEYAN K
HTML
<body ng-controller="ctrl">
<h1>Hello World</h1>
<h1><span ng-bind="message"></span></h1>
<ul>
<li ng-repeat="ele in data" style="list-style:none;">
<h4><span ng-bind="ele"></span></h4>
</li>
</ul>
<select style="width:100px;" ng-model="selectedItem" ng-options="item as item.displayName disable when item.isDisabled for item in seletedProperties">
</select>
<!--Js file binding starts here-->
<script src="Scripts/angular.min.js"></script>
<script src="app.js"></script>
<!--End-->