JSFiddle - React, Tailwind, and code Playground

by Mohamad Shiralizadeh

HTML

<div ng-app >
    <div ng-controller="Ctrl">
        <input type="text" ng-model="title">
            <input type="checkbox" ng-model="chk">
            <div ng-show="chk">
                {{title + age}}
            </div>
                <ul>
                    <li ng-repeat="name in names">{{name}}</li>
                </ul>
    </div>
</div>
<script>
    var Ctrl = function ($scope) {
        $scope.title = "me";
        $scope.age = "23";
        $scope.chk = true;
        $scope.names = ["1", "2", "3", "4"];
    }
</script>