]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/staff.module.ts
LP1908763 Survey column sorting broken
[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} from './splash.component';
9 import {AboutComponent} from './about.component';
10
11 @NgModule({
12   declarations: [
13     StaffComponent,
14     StaffNavComponent,
15     StaffSplashComponent,
16     StaffLoginComponent,
17     AboutComponent
18   ],
19   imports: [
20     StaffCommonModule.forRoot(),
21     StaffRoutingModule
22   ]
23 })
24
25 export class StaffModule {}
26