20 lines
728 B
TypeScript
Raw Normal View History

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 = [
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
];