JSFiddle - React, Tailwind, and code Playground

by Daniel Lamb

HTML

<div ng-app="myApp">
    <div ng-controller="myExample">DEMO</div>
</div>

JavaScript

angular.module('myApp', [])
.controller('myExample', ['$document', function ($document) {
    $document.ready(function () {
        console.log('DOM is ready!');
    });
}]);