blob: 77a223bdf701c924ff016eddf02c552c51416f3f [file] [log] [blame]
import {StyleConfig} from '../../config/style.config';
class FooterCtrl {
public brand: string;
/** @ngInject */
constructor() {
this.brand = StyleConfig.projectName;
}
}
export const xosFooter: angular.IComponentOptions = {
template: require('./footer.html'),
controllerAs: 'vm',
controller: FooterCtrl
};