]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/staff.module.ts
LP2061136 - Stamping 1405 DB upgrade script
[working/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 import {StaffLoginNotAllowedComponent} from './login-not-allowed.component';
11
12 @NgModule({
13     declarations: [
14         StaffComponent,
15         StaffNavComponent,
16         StaffSplashComponent,
17         AutofocusDirective,
18         StaffLoginComponent,
19         StaffLoginNotAllowedComponent,
20         AboutComponent
21     ],
22     imports: [
23         StaffCommonModule.forRoot(),
24         StaffRoutingModule
25     ]
26 })
27
28 export class StaffModule {}
29