JSFiddle - React, Tailwind, and code Playground

by Nicolas Lips

HTML

<div ng-app="app">
  <div ng-controller="TestController">
    a: {{a}}  
  </div>
</div>

JavaScript

angular.module("app", [])
.controller("TestController", [TestController])
.service("ViewEntity", [ViewEntity]);

function ViewEntity() {

}

function TestController() {
	this.a = "Hello";
}