2018-04-18 20:27:27 +09:00
|
|
|
import { ProfileComponent } from './profile/profile.component';
|
2018-04-06 15:59:49 +09:00
|
|
|
import { SigninComponent } from './signin/signin.component';
|
|
|
|
import { SignupComponent } from './signup/signup.component';
|
|
|
|
import { ResetPasswordComponent } from './reset-password/reset-password.component';
|
2018-05-06 18:40:18 +09:00
|
|
|
import { SETTINGS_COMPONENTS } from './settings';
|
|
|
|
import { PolicyComponent } from './policy/policy.component';
|
|
|
|
import { TermsComponent } from './terms/terms.component';
|
|
|
|
import { ModifyPasswordComponent } from './reset-password/modify-password.component';
|
2018-04-06 15:59:49 +09:00
|
|
|
|
|
|
|
export const COMPONENTS = [
|
2018-04-18 20:27:27 +09:00
|
|
|
ProfileComponent,
|
2018-04-06 15:59:49 +09:00
|
|
|
SigninComponent,
|
|
|
|
SignupComponent,
|
|
|
|
ResetPasswordComponent,
|
2018-05-06 18:40:18 +09:00
|
|
|
ModifyPasswordComponent,
|
2018-05-03 16:19:10 +09:00
|
|
|
PolicyComponent,
|
|
|
|
TermsComponent,
|
2018-04-19 21:35:11 +09:00
|
|
|
SETTINGS_COMPONENTS,
|
2018-04-06 15:59:49 +09:00
|
|
|
];
|