auth-module.ts 507 B

12345678910111213141516171819
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { AuthRoutingModule } from './auth-routing-module';
  4. import { LoginComponent } from './login/login';
  5. import { Register } from './register/register';
  6. import { ForgotPasswordComponent } from './forgot-password/forgot-password';
  7. @NgModule({
  8. declarations: [],
  9. imports: [
  10. CommonModule,
  11. AuthRoutingModule,
  12. LoginComponent,
  13. Register,
  14. ForgotPasswordComponent
  15. ]
  16. })
  17. export class AuthModule { }