39 lines
1.0 KiB
TypeScript
Raw Normal View History

2018-01-29 20:58:12 +09:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
2018-02-27 17:34:12 +09:00
import { RouterModule } from '@angular/router';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MaterialModule } from 'app/commons/ui/material/material.module';
import { ModifyComponent } from './component/modify.component';
import { SigninComponent } from './component/signin.component';
import { SignupComponent } from './component/signup.component';
import { ResetPasswordComponent } from './component/reset-password.component';
import { MemberService } from './service/member.service';
import { MemberStoreModule } from './member-store.module';
export const COMPONENTS = [
ModifyComponent,
SigninComponent,
SignupComponent,
ResetPasswordComponent,
];
2018-01-29 20:58:12 +09:00
@NgModule({
imports: [
CommonModule,
2018-02-27 17:34:12 +09:00
RouterModule,
FormsModule,
ReactiveFormsModule,
MaterialModule,
MemberStoreModule,
2018-01-29 20:58:12 +09:00
],
2018-02-27 17:34:12 +09:00
declarations: COMPONENTS,
exports: COMPONENTS,
2018-01-29 20:58:12 +09:00
providers: [
MemberService,
2018-02-27 17:34:12 +09:00
],
2018-01-29 20:58:12 +09:00
})
export class MemberModule { }