JSFiddle - React, Tailwind, and code Playground

HTML

<html ng-app class="ng-app">
    <head>
    </head>
    <body>
        <div ng-controller="Controller">
            <p>{{test}}</p>
        </div>
    </body>
</html>

JavaScript

function Controller($scope)
{
    $scope.test = "Hello world";
}