Add events hub notify calls
[sdc.git] / catalog-ui / src / app / ng2 / components / ui / plugin / plugin-frame.module.ts
1 import {NgModule} from "@angular/core";
2 import { CommonModule } from '@angular/common';
3 import {PluginFrameComponent} from "./plugin-frame.component";
4 import {LayoutModule} from "../../layout/layout.module";
5 import {GlobalPipesModule} from "../../../pipes/global-pipes.module";
6 import {UiElementsModule} from "../ui-elements.module";
7
8
9 @NgModule({
10     declarations: [
11         PluginFrameComponent
12     ],
13     imports: [
14         CommonModule,
15         LayoutModule,
16         GlobalPipesModule,
17         UiElementsModule
18     ],
19     entryComponents: [PluginFrameComponent],
20     exports: [
21         PluginFrameComponent
22     ],
23     providers: []
24 })
25 export class PluginFrameModule {
26
27 }