JSFiddle - React, Tailwind, and code Playground

by apimenov93

HTML

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"></script>
<script>
  var app = angular.module('app', []);
  app.controller('MainController', ['$scope','$timeout', function(scope,$timeout) {
    scope.name = 'misko';
    scope.counter = 0;
    scope.$watch('name', function(newValue, oldValue) {
      scope.count++;
    });
    $timeout(function(){
    	scope.$digest();
    }, 0);
  }]);

</script>

<body>
  <div ng-app='app' ng-controller="MainController">
  </div>
</body>