wrongly setting version
[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
7
8 @NgModule({
9     declarations: [
10         PluginFrameComponent
11     ],
12     imports: [
13         CommonModule,
14         LayoutModule,
15         GlobalPipesModule
16     ],
17     entryComponents: [PluginFrameComponent],
18     exports: [
19         PluginFrameComponent
20     ],
21     providers: []
22 })
23 export class PluginFrameModule {
24
25 }