Project

General

Profile

1
import {NgModule} from '@angular/core';
2
import {CommonModule} from '@angular/common';
3
import {LoadingComponent} from "./loading.component";
4

    
5
@NgModule({
6
  imports: [
7
    CommonModule,
8
  ],
9
  declarations: [
10
    LoadingComponent
11
  ],
12
  providers: [],
13
  exports: [
14
    LoadingComponent
15
  ]
16
})
17
export class LoadingModule {
18
}
(2-2/2)