JSFiddle - React, Tailwind, and code Playground
by cherishpeace
HTML
<div ng-app>
<ul ng-ctrl="Ctrl">
<li ng-repeat="i in items">
{{i}}
</li>
</ul>
</div
CSS
</style> <!-- Ugly Hack to make remote files preload in jsFiddle -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.7/angular.min.js"></script>
<style>
JavaScript
function Ctrl($scope) {
$scope.items = ['hello','world'];
}