JSFiddle - React, Tailwind, and code Playground

HTML

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

JavaScript

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