JSFiddle - React, Tailwind, and code Playground

by floor_

HTML

<div ng-app="testApp">
    <div ng-controller="testCtrl">
      {{testing}}
    </div>
 </div>

JavaScript

angular.module('testApp', []);
    
angular.module("testApp").controller("testCtrl",
	["$scope",
  	function($scope) {
  		
      angular.export(self, {
      	testing: 'Test is working'
      });
    }
 	]
);