]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/sandbox/sandbox.module.ts
LP1825851 Server managed/processed print templates
[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 {ReactiveFormsModule} from '@angular/forms';
6 import {SampleDataService} from '@eg/share/util/sample-data.service';
7
8 @NgModule({
9   declarations: [
10     SandboxComponent
11   ],
12   imports: [
13     StaffCommonModule,
14     SandboxRoutingModule,
15     ReactiveFormsModule
16   ],
17   providers: [
18     SampleDataService
19   ]
20 })
21
22 export class SandboxModule {
23
24 }