JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app="myapp" ng-controller="MyCtrl">
    <input type="text" ng-model="test"/>
    <div>Test: {{test}}</div>
    <div ng-show="test">Showing this div</div>
</div>


<script type="text/javascript" src="http://docs.angularjs.org/angular-resource-1.0.1.min.js"></script>

JavaScript

var myapp = angular.module('myapp', []);
function MyCtrl($scope) {$scope.test = 'n'};