JSFiddle - React, Tailwind, and code Playground

by Mirosław Hajkowski

HTML

<div ng-app="myApp">
    <div ng-controller="MainCtrl">
        {{ text }}
    </div>
</div>

JavaScript

var myApp = angular.module('myApp', []);
myApp.controller('MainCtrl', ['$scope', function ($scope) {
    $scope.text = 'Hello, Angular fanatic.';   
}]);