JSFiddle - React, Tailwind, and code Playground

by Zineb ERRAHMOUNI

HTML

<div data-ng-controller="myctrl">

{{ myVar }} <br/>

<input type="text" ng-model="myVar" />
<input type="button" data-ng-click="" />



</div>

JavaScript

"use strict";

(function() {
        
    angular.module("myApp", []);

    angular.module("myApp").controller('myctrl', ['$scope', function ($scope) {
        $scope.myVar = "TOTO";        
    }]);
    
})();