UNPKG

client-ui

Version:

Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront

11 lines (9 loc) 305 B
(function () { "use strict"; angular.module(moduleName).controller("loanOverviewController", loanOverviewController); loanOverviewController.$inject = ["loan"]; function loanOverviewController(loanService) { var self = this; self.loan = loanService.getCurrentLoan(); } })();