blob: c2e4c4123cadba0a6a92348ff1c0bc85718011fe [file] [log] [blame]
import {StyleConfig} from '../../config/style.config';
class HeaderController {
public title: string;
constructor() {
this.title = StyleConfig.projectName;
}
}
export const xosHeader: angular.IComponentOptions = {
template: require('./header.html'),
controllerAs: 'vm',
controller: HeaderController
};