JSFiddle - React, Tailwind, and code Playground

by aravinda pushpagiri

HTML

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<script type="type/ng-template" id="test.html" >
		<h1>Home</h1>
    {{greeting}}
</script>
<script type="type/ng-template" id="about.html">
	<h1>About</h1>
  {{content}}
</script>
<div>
    <div id="navigation">
      <a href="#/home" >Home</a>
      <a href="#/about">About</a>
    </div>

    <div ng-view ></div>
</div>