JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<body ng-app>
<div ng-controller="helloCtrl">
<span>{{hello}}</span>
</div>
</body>
</html>
JavaScript
function helloCtrl($scope){
$scope.hello = "Hello, World!";
}
<html>
<body ng-app>
<div ng-controller="helloCtrl">
<span>{{hello}}</span>
</div>
</body>
</html>
function helloCtrl($scope){
$scope.hello = "Hello, World!";
}