JSFiddle - React, Tailwind, and code Playground

by jujuiscody

HTML

<html ng-app="myApp">
<body ng-controller="myCntrl">
<h1>
Hello{{message}}
</h1>

</body>

</html>

JavaScript

var app = angular.module("myApp", []);

var myCntrl = function($scope){
$scope.message = "starting...";
}
app.controller("myCntrl", myCntrl);