JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app="myApp" ng-controller="fooController">
<input type="text" ng-model="vm.name" />
{{vm.name}}
</div>
JavaScript
var app = angular.module('myApp', []);
app.controller('fooController',['$scope', function($scope) {
}]);