JSFiddle - React, Tailwind, and code Playground

by Jimmy Chandra

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) {
}]);