createpassword.module.ts 551 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
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

import { CreatepasswordRoutingModule } from './createpassword-routing.module';
import { CoverComponent } from './cover/cover.component';
import { Cover2Component } from './cover2/cover2.component';
import { BasicComponent } from './basic/basic.component';

@NgModule({
  declarations: [
    CoverComponent,
    Cover2Component,
    BasicComponent
  ],
  imports: [
    CommonModule,
    CreatepasswordRoutingModule
  ]
})
export class CreatepasswordModule { }