JSFiddle - React, Tailwind, and code Playground

by Minko Gechev

HTML

<div data-ng-app>
    <div data-ng-controller="TestCtrl">
        <label><input type="checkbox" data-ng-model="isChecked" data-ng-checked="isChecked" /> Text</label>
    </div>
</div>

JavaScript

function TestCtrl() {
    this.isChecked = true;
}