JSFiddle - React, Tailwind, and code Playground

by bchapman26

HTML

<div ng-app="myApp">
  <div ng-controller="myController">
  {{value}}
</div>
</div>

JavaScript

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

angular.module('myApp').controller('myController', function($scope, myService) {
    $scope.value = myService.name;
});

angular.module('myApp').service('myService', function() {
        this.name = 'Default';
        this.sayHello = function() {
                return "Hello, " + name + "!"
            }
        } 
    this.setName = function(name) {
        this.name = name;
    };
});
            

angular.module('myApp').run(function(myService) {
    myService.setName('Hello Universe');
});