]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/sandbox/sandbox.module.ts
LP1830432: Make the org-family-select reusable
[working/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 {FormsModule, ReactiveFormsModule} from '@angular/forms';
6
7 @NgModule({
8   declarations: [
9     SandboxComponent
10   ],
11   imports: [
12     StaffCommonModule,
13     SandboxRoutingModule,
14     FormsModule,
15     ReactiveFormsModule
16   ],
17   providers: [
18   ]
19 })
20
21 export class SandboxModule {
22
23 }