20 lines
449 B
TypeScript
20 lines
449 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { FormsModule } from '@angular/forms';
|
||
|
|
||
|
import {ModalLoading} from './loading.component';
|
||
|
import {ModalModule} from './modal.module';
|
||
|
|
||
|
//helpers
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [ CommonModule, FormsModule,ModalModule ],
|
||
|
declarations: [
|
||
|
ModalLoading
|
||
|
],
|
||
|
exports: [
|
||
|
ModalLoading
|
||
|
]
|
||
|
})
|
||
|
export class LoadingModalModule { }
|