Project

General

Profile

1
import { NgModule }            from '@angular/core';
2
import { CommonModule }        from '@angular/common';
3
import { FormsModule }         from '@angular/forms';
4

    
5
import {AlertModal} from './alert';
6
import {ModalModule} from './modal.module';
7

    
8
@NgModule({
9
  imports: [ CommonModule, FormsModule, ModalModule ],
10
  declarations: [
11
    AlertModal
12
  ],
13
  exports: [
14
    AlertModal
15
  ]
16
})
17
export class AlertModalModule { }
(2-2/8)