JSFiddle - React, Tailwind, and code Playground
HTML
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
</head>
<body ng-init="names=['shan', 'amit', 'vaibhav']">
<ul>
<li ng-repeat="pname in names">
{{pname}}
</li>
</ul>
</body>
</html>