18 lines
418 B
TypeScript
18 lines
418 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { FormsModule } from '@angular/forms';
|
||
|
|
||
|
import {AlertModal} from './alert';
|
||
|
import {ModalModule} from './modal.module';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [ CommonModule, FormsModule, ModalModule ],
|
||
|
declarations: [
|
||
|
AlertModal
|
||
|
],
|
||
|
exports: [
|
||
|
AlertModal
|
||
|
]
|
||
|
})
|
||
|
export class AlertModalModule { }
|