Daniel Maldonado

Results 1 comments of Daniel Maldonado

I dont know if is the better solution, I did this: _// app/components/login/index.module.js_ import {AuthService} from './authenticate.service'; import {LoginController} from './login.controller'; angular.module('loginModule', []) .service('AuthService', AuthService) .controller('LoginController', LoginController); _// .index.module.js_ import...