JSFiddle - React, Tailwind, and code Playground
by Bretto
HTML
<div ng-app="myApp">
<div ng-controller="MyCtrl">
</div>
</div>
JavaScript
angular.module('myApp', [])
.controller('MyCtrl', ['$scope', function ($scope) {
console.log('test');
}]);