2017-12-19 13:53:46 +01:00
|
|
|
/* common components of modal components */
|
2019-10-04 10:45:51 +02:00
|
|
|
import {NgModule} from '@angular/core';
|
2017-12-19 13:53:46 +01:00
|
|
|
import {Open} from './open.component';
|
2019-10-04 10:45:51 +02:00
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
@NgModule({
|
2019-10-04 10:45:51 +02:00
|
|
|
imports: [],
|
2017-12-19 13:53:46 +01:00
|
|
|
declarations: [
|
2019-12-15 14:16:08 +01:00
|
|
|
Open
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
|
|
|
exports: [
|
2019-12-15 14:16:08 +01:00
|
|
|
Open
|
2017-12-19 13:53:46 +01:00
|
|
|
]
|
|
|
|
})
|
2019-10-04 10:45:51 +02:00
|
|
|
export class ModalModule {
|
|
|
|
}
|