Project

General

Profile

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

    
5
 import {ModalLoading} from './loading.component';
6
import {ModalModule} from './modal.module';
7

    
8
//helpers
9

    
10
@NgModule({
11
  imports: [ CommonModule, FormsModule,ModalModule  ],
12
  declarations: [
13
    ModalLoading
14
  ],
15
  exports: [
16
   ModalLoading
17
  ]
18
})
19
export class LoadingModalModule { }
(4-4/8)