JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-controller='GreetingCtrl as g'>
{{g.greeting}} {{g.name}}
</div>
JavaScript
function GreetingCtrl($scope) {
this.greeting = 'Hello';
this.name = 'Michael';
}