JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.angularjs.org/angular-0.9.18.min.js"
        ng:autobind></script>

<div ng:controller='GreetingCtrl'>
    {{greeting}} {{name}}
</div>

JavaScript

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