16 lines
431 B
TypeScript
16 lines
431 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { UnderConstructionComponent } from './under-construction/under-construction.component';
|
|
import { DialogModule } from './dialog/dialog.module';
|
|
|
|
|
|
@NgModule({
|
|
declarations: [ UnderConstructionComponent ],
|
|
imports: [
|
|
CommonModule,
|
|
DialogModule
|
|
],
|
|
exports: [ UnderConstructionComponent ]
|
|
})
|
|
export class SharedModule { }
|