JSFiddle - React, Tailwind, and code Playground

by Michael Bazos

HTML

<div ng-app="">
    <div ng-controller="DemoController as d">
        {{d.name}}
    </div>
</div>

JavaScript

function DemoController($scope, $http) {

    this.name = 'Hello';

}