JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-controller='GreetingCtrl as g'>
    {{g.greeting}} {{g.name}}
</div>

JavaScript

function GreetingCtrl() {
    this.greeting = 'Hello';
    this.name = 'Michael';
}