JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app="myApp">
    <div ng-controller="MyController">
        <pre>{{todoList}}</pre>
    </div>    
</div>

JavaScript

var app = angular.module("myApp",[]);

app.service('todoListService', function() {
  this.todoList = [];
  this.addTodo = function (todo) {
    // Sua implementação
  }
  this.removeTodo = function (todo) {
    // Sua implementação
  }
});

app.controller('MyController', ['$scope', 'todoListService', function($scope, todoListService) {
  $scope.todoList = todoListService.todoList;
}]);