JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app="">
<h1 ng-controller="HelloWorldCtrl">{{helloMessage}}</h1>
</div>
JavaScript
function HelloWorldCtrl($scope){
$scope.helloMessage="Hello World";
}
<div ng-app="">
<h1 ng-controller="HelloWorldCtrl">{{helloMessage}}</h1>
</div>
function HelloWorldCtrl($scope){
$scope.helloMessage="Hello World";
}