JSFiddle - React, Tailwind, and code Playground

by munir

HTML

<div ng-app="myApp>
    <input type="checkBox" ng-model="checked"><label>Show?</label>
</div>
        
<div ng-show="checked">
    Hello,World!
</div>