JSFiddle - React, Tailwind, and code Playground
by Paul Lan
HTML
<link rel="stylesheet" href="http://weingram.com/bootstrap/css/bootstrap.css">
<div class="controller" ng-app="paul">
<div ng-controller="helloworld">
{{firstFiddle}}
</div>
</div>
JavaScript
angular.module('paul', [])
.controller( 'helloworld', function($scope) {
$scope.firstFiddle = "Paul Lan's First Fiddle."
});