JSFiddle - React, Tailwind, and code Playground
by munir
HTML
<html ng-app>
<div>
<label>Name:</label><input type="text" ng-model="name">
</div>
<div>
<input type="checkBox" ng-model="checked"><label>Show?</label>
</div>
<div ng-show="checked">
Hello,{{name}}!
</div>
</html>
JavaScript
var myApp = angular.module('myApp', [])