JSFiddle - React, Tailwind, and code Playground

by Moien Tajik

HTML

<body ng-app="myApp" ng-controller="myCtrl">
  <h1> {{message}} </h1>
</body>
<script>
  var app = angular.module("myApp", []);
  app.controller("myCtrl", function($scope, $timeout) {
    $scope.message = "Hello World";
    $timeout(function() {
      $scope.message = "How are you today ?";
    }, 2000);
  });

</script>