blob: 270541bf6aff4072f7930c4556cb644fd5a98fc1 [file] [log] [blame]
Matteo Scandolof6acdbe2016-12-13 10:29:37 -08001import {xosHeader} from './header/header';
2import {xosFooter} from './footer/footer';
3import {xosNav} from './nav/nav';
4import routesConfig from './routes';
5import {xosLogin} from './login/login';
Matteo Scandolo9f87f302016-12-13 18:11:10 -08006import {xosTable} from './table/table';
Matteo Scandolof2c3ed62016-12-15 14:32:50 -08007import {RuntimeStates} from './services/runtime-states';
8import {NavigationService} from './services/navigation';
Matteo Scandolof6acdbe2016-12-13 10:29:37 -08009
10export const xosCore = 'xosCore';
11
12angular
13 .module('xosCore', ['ui.router'])
14 .config(routesConfig)
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080015 .provider('RuntimeStates', RuntimeStates)
16 .service('NavigationService', NavigationService)
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080017 .component('xosHeader', xosHeader)
18 .component('xosFooter', xosFooter)
19 .component('xosNav', xosNav)
Matteo Scandolo9f87f302016-12-13 18:11:10 -080020 .component('xosLogin', xosLogin)
21 .component('xosTable', xosTable);