JSFiddle - React, Tailwind, and code Playground

by Ali Adravi

HTML

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.js"></script>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css">
<script src="https://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.6.0.js"></script>
<div ng-app="myapp" data-ng-controller='Ctrl'>
 <h1>
      Header
 </h1>
  <h3>
   {{test}}
  </h3>
</div>

JavaScript

var app = angular.module('myapp', []);
    app.controller('Ctrl', function($scope){
        $scope.test = "Hello";
    });