JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>UI style guide</title>
</head>
<body ng-app="myApp">
<div ng-controller="mainCtrl">
Result: {{name}}
</div>
</body>
</html>
JavaScript
(function() {
var app = angular.module('myApp', []);
app.controller('mainCtrl', function($scope) {
$scope.name = "Heading...";
});
})();