Israel Lavi | 1994c98 | 2018-05-21 17:42:00 +0300 | [diff] [blame^] | 1 | import { NgModule } from "@angular/core"; |
| 2 | import { PopupMenuListComponent } from "./popup-menu-list.component"; |
| 3 | import { PopupMenuItemComponent } from "./popup-menu-item.component"; |
| 4 | import { CommonModule } from "@angular/common"; |
| 5 | |
| 6 | |
| 7 | @NgModule({ |
| 8 | declarations: [ |
| 9 | PopupMenuListComponent, |
| 10 | PopupMenuItemComponent |
| 11 | ], |
| 12 | imports: [ |
| 13 | CommonModule |
| 14 | ], |
| 15 | exports: [ |
| 16 | PopupMenuListComponent, |
| 17 | PopupMenuItemComponent |
| 18 | ], |
| 19 | }) |
| 20 | export class PopupMenuModule { |
| 21 | } |