JSFiddle - React, Tailwind, and code Playground

by sunil puvvada

HTML

<div ng-app>
    <div >
        <input type="checkbox" ng-true-value="A" ng-false-value="B" ng-model="checkdasfddasf"/>       
        <input type="checkbox" ng-true-value="A" ng-false-value="B" ng-model="check"/>        
 
    </div>
    
    <div ng-show="checkdasfddasf == 'A'">
        Checked
    </div>
      <div ng-show="check == 'A'">
        Checked twetrwer
    </div>
</div>