]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/staff.module.ts
LP#1938835: make the Angular staff portal/home page dynamic
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / staff.module.ts
1 import {NgModule} from '@angular/core';
2 import {StaffCommonModule} from '@eg/staff/common.module';
3
4 import {StaffComponent} from './staff.component';
5 import {StaffRoutingModule} from './routing.module';
6 import {StaffNavComponent} from './nav.component';
7 import {StaffLoginComponent} from './login.component';
8 import {StaffSplashComponent, AutofocusDirective} from './splash.component';
9 import {AboutComponent} from './about.component';
10
11 @NgModule({
12   declarations: [
13     StaffComponent,
14     StaffNavComponent,
15     StaffSplashComponent,
16     AutofocusDirective,
17     StaffLoginComponent,
18     AboutComponent
19   ],
20   imports: [
21     StaffCommonModule.forRoot(),
22     StaffRoutingModule
23   ]
24 })
25
26 export class StaffModule {}
27