]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/sandbox/sandbox.module.ts
0937ab0ee3d140a88778afd845535e86e1539ad5
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / sandbox / sandbox.module.ts
1 import {NgModule} from '@angular/core';
2 import {StaffCommonModule} from '@eg/staff/common.module';
3 import {SandboxRoutingModule} from './routing.module';
4 import {SandboxComponent} from './sandbox.component';
5 import {ReactiveFormsModule} from '@angular/forms';
6
7 @NgModule({
8   declarations: [
9     SandboxComponent
10   ],
11   imports: [
12     StaffCommonModule,
13     SandboxRoutingModule,
14     ReactiveFormsModule
15   ],
16   providers: [
17   ]
18 })
19
20 export class SandboxModule {
21
22 }