JSFiddle - React, Tailwind, and code Playground

by javiros

HTML

<div ng-app="myApp" ng-controller="regionsCtrl">
  
  <div class="form-group">
    <div class="col-lg-offset-2 col-lg-10">
      <div class="checkbox c-checkbox">
        <label>
          <input type="checkbox" ng-checked="rec.isSpecial==1" ng-model="rec.isSpecial">
          <span class="fa fa-check"></span>Special
        </label>
      </div>
    </div>
  </div>
</div>

JavaScript

var app = angular.module('myApp', []);
app.controller('regionsCtrl', function($scope, $http) {
  $scope.rec = {isSpecial: 1}
});