JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app="MyApp">
  <div ng-controller="MyCtrl">
      <div id="msg"></div>
  </div>
</div>

JavaScript

angular.module('MyApp', []);

function MyCtrl($scope) {
    angular.element(document).ready(function () {
        document.getElementById('msg').innerHTML = 'Hello';
    });
}