JSFiddle - React, Tailwind, and code Playground

AngularJS ngShow

by pmamode

HTML

<body>
  <div ng-app="monitorApp">
    Safety Related:
    <input type="checkbox" ng-model="Safety_Monitor">
    <br/>
    <div ng-show="Safety_Monitor">
      I show up when your checkbox is checked.
    </div>
  </div>
</body>

JavaScript

var myApp2 = angular.module("monitorApp", []);