JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html ng-app='myapp'>
<head>
    <title>Angular App</title>
</head>
<body>
    <div ng-controller="TextController">
        <h1>Angular App says {{greeting.message}}</h1>
    </div>


    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"/>
    <script type="text/javascript">
        var myModule = angular.module('myapp',[]);
        console.log("Inside the script...");
        myModule.controller("TextController", function($scope){
            console.log("Inside TextController");
            $scope.greeting.message = "hello world!";
        });
    </script>

</body>
</html>