JSFiddle - React, Tailwind, and code Playground

by denisonluz

HTML

<div ng-controller='AppController'>
    <h3>one plus two is {{1 + 2}}</h3>
    <ul ng-repeat='item in items'>
        <li>{{item.title}}</li>
        <li>{{item.description}}</li>
    </ul>
</div>

CoffeeScript

testApp = angular.module 'testApp', []
    
testApp.controller 'AppController', ($scope) ->
    $scope.items = [{title: "My test App", description: 'Some Text Here'}]
    
angular.bootstrap document, ["testApp"]