authentication.module.ts 830 Bytes
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

import { AuthenticationRoutingModule } from './authentication-routing.module';
import { UndermaintainanceComponent } from './undermaintainance/undermaintainance.component';
import { UnderconstructionComponent } from './underconstruction/underconstruction.component';
import { ComingsoonComponent } from './comingsoon/comingsoon.component';
import { ErrorpagesModule } from './errorpages/errorpages.module';
import { SharedModule } from 'src/app/shared/sharedmodule';

@NgModule({
  declarations: [
    UndermaintainanceComponent,
    UnderconstructionComponent,
    ComingsoonComponent
  ],
  imports: [
    CommonModule,
    ErrorpagesModule,
    AuthenticationRoutingModule,
    SharedModule
  ]
})
export class AuthenticationModule { }