JSFiddle - React, Tailwind, and code Playground
by Rob Rothe
HTML
<div ng-app="myApp" ng-controller="AppCtrl as ctrl">
</div>
JavaScript
angular
.module('myApp', [])
.controller('AppCtrl',AppCtrl);
function AppCtrl($scope) {
}
by Rob Rothe
<div ng-app="myApp" ng-controller="AppCtrl as ctrl">
</div>
angular
.module('myApp', [])
.controller('AppCtrl',AppCtrl);
function AppCtrl($scope) {
}