]>
Commit | Line | Data |
---|---|---|
d43c6b1f C |
1 | import { CommonModule } from '@angular/common' |
2 | import { NgModule } from '@angular/core' | |
3 | import { SharedSearchModule } from '@app/shared/shared-search' | |
4 | import { RemoteInteractionRoutingModule } from './remote-interaction-routing.module' | |
5 | import { RemoteInteractionComponent } from './remote-interaction.component' | |
6 | ||
7 | @NgModule({ | |
8 | imports: [ | |
9 | CommonModule, | |
10 | ||
11 | SharedSearchModule, | |
12 | ||
13 | RemoteInteractionRoutingModule | |
14 | ], | |
15 | ||
16 | declarations: [ | |
17 | RemoteInteractionComponent | |
18 | ], | |
19 | ||
20 | exports: [ | |
21 | RemoteInteractionComponent | |
22 | ], | |
23 | ||
24 | providers: [] | |
25 | }) | |
26 | export class RemoteInteractionModule { } |