JSFiddle - React, Tailwind, and code Playground
by zono
HTML
<div ng-app>
<div ng-controller="TestCtrl">
{{number}}
</div>
<input type="button" value="Increment variable" ng-click="number = number + 1"/>
</div>
JavaScript
function TestCtrl($scope) {
$scope.number = 0;
};