JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- templates/about.html -->
<body ng-app="myApp">
    <div ng-controller="AboutCtrl">
        <h1>{{pageTitle}} Page</h1>
        <p>{{message}}</p>
    </div>    
</body>

CSS

body {
    padding: 30px;
}

JavaScript

angular
  .module('myApp', []);

function AboutCtrl($scope) {
  $scope.pageTitle = 'About';
  $scope.message = 'Look! I am an about page.';
}

angular
  .module('myApp')
  .controller('AboutCtrl', AboutCtrl);