23 lines
620 B
TypeScript
23 lines
620 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { AuthComponent } from './auth.component';
|
|
import { AuthRoutingModule } from './auth-routing.module';
|
|
import { SigninComponent } from './signin/signin.component';
|
|
import { SignupComponent } from './signup/signup.component';
|
|
import { ResetPasswordComponent } from './reset-password/reset-password.component';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
AuthRoutingModule,
|
|
],
|
|
declarations: [
|
|
AuthComponent,
|
|
SigninComponent,
|
|
SignupComponent,
|
|
ResetPasswordComponent,
|
|
]
|
|
})
|
|
export class AuthModule { }
|