JSFiddle - React, Tailwind, and code Playground

by Mehmet Yener

HTML

<div ng-app="myApp">

   <div ng-controller="GreetingController">
      {{ greeting }}
   </div>

</div>

JavaScript

var myApp = angular.module('myApp',[]);

myApp.controller('GreetingController', ['$scope', function($scope) {
  $scope.greeting = 'Hola!';
}]);