JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app="">
<div ng-controller="DemoController as d">
{{d.name}}
</div>
</div>
JavaScript
function DemoController($scope, $http) {
this.name = 'Hello';
}
<div ng-app="">
<div ng-controller="DemoController as d">
{{d.name}}
</div>
</div>
function DemoController($scope, $http) {
this.name = 'Hello';
}