JSFiddle - React, Tailwind, and code Playground
by Antony Joyson
HTML
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
example for multiple ng-app in same screen working in local tests
<div id='app1' ng-app="myApp" ng-controller="myCtrl">
{{ firstName + " " + lastName }}
</div>
<div id='App2' ng-app="myApp2" ng-controller="myCtrl2">
{{ firstName2 + " " + lastName2 }}
</div>
JavaScript
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope) {
$scope.firstName = "John";
$scope.lastName = "Doe";
});
var app2 = angular.module("myApp2", []);
app2.controller("myCtrl2", function($scope) {
$scope.firstName2 = "John";
$scope.lastName2 = "Doe";
});
angular.bootstrap(document.getElementById("App2"), ['myApp2']);