Project

General

Profile

1 50169 argiro.kok
/*  common components of modal components */
2 57261 k.triantaf
import {NgModule} from '@angular/core';
3 50169 argiro.kok
import {Open} from './open.component';
4 57261 k.triantaf
5 50169 argiro.kok
@NgModule({
6 57261 k.triantaf
  imports: [],
7 50169 argiro.kok
  declarations: [
8 57886 k.triantaf
    Open
9 50169 argiro.kok
  ],
10
  exports: [
11 57886 k.triantaf
    Open
12 50169 argiro.kok
  ]
13
})
14 57261 k.triantaf
export class ModalModule {
15
}