aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/downgrade-wrappers/menu-list-ng2/menu-list-ng2.module.ts
blob: 957ba35c5a5f418bfed8e35bd1115a2b2422a0ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { NgModule } from "@angular/core";
import { CommonModule } from '@angular/common';
import { MenuListModule } from "../../ui/menu/menu-list.module";
import { MenuListNg2Component } from "./menu-list-ng2.component";

export {
    MenuListNg2Component
};

@NgModule({
    declarations: [
        MenuListNg2Component
    ],
    imports: [CommonModule, MenuListModule],
    exports: [
        MenuListNg2Component
    ],
    entryComponents: [ //need to add anything that will be dynamically created
        MenuListNg2Component
]
})
export class MenuListNg2Module {
}