client-ui
Version:
Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront
12 lines (9 loc) • 383 B
JavaScript
(function () {
'use strict';
angular.module(moduleName).controller('loanApplicationController', loanApplicationController);
loanApplicationController.$inject = ['$scope', 'currentLoan', 'clientData'];
function loanApplicationController($scope, currentLoan, clientData) {
$scope.currentLoan = currentLoan;
$scope.clientData = clientData;
}
})();