JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.js"></script>

<h1>Simple Data Binding with AngularJS</h1>
<br />
<div ng-app>
    Name: <input type="text" ng-model="name" />
    <br /><br />
    Welcome to AngularJS {{name}}
</div>

JavaScript

//No JavaScript needed aside from the reference to the AngularJS script. 
//The HTML tab has all of the code for this demo