overflow-webapp/src/app/pages/auth/auth.module.ts
crusader ec7443f441 ing
2018-01-28 17:51:26 +09:00

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 { }