explore-services/sample-components/sampleComponent-rc6/src/app/common/modal/loading.module.ts

14 lines
392 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import {Open} from './open.component';
@NgModule({
imports: [ CommonModule, FormsModule ],
declarations: [ Open]
})
// exports: [ ContactComponent ],
// providers: [ ContactService ]
export class LoadingModule { }