JSFiddle - React, Tailwind, and code Playground

HTML

<header>
    <img src="http://sub1.kevinchisholm.com/blog/images/angularjs-logo-small.png" class="logo" >
    <hgroup>
      <h1>Getting Started With Angular.js<span>Manually Boot-Strapping Your Application<i> (Part II)</i><span></h1>
      <h2>Working Example</h2>
      <h3><a

<div id="main">
    <!-- our HTML will be injected here -->
</div>
<script>
    function bootAngular(){
    var myMod = angular.module('myApp', []);
    
    angular.bootstrap( $('body'), ['myApp']);
    };
    
    angular.element(document).ready(function(){
    //our JavaScript code will go here.
    });
</script>