2018-04-18 11:27:27 +00:00
|
|
|
import { ProfileComponent } from './profile/profile.component';
|
2018-04-06 06:59:49 +00:00
|
|
|
import { SigninComponent } from './signin/signin.component';
|
|
|
|
import { SignupComponent } from './signup/signup.component';
|
|
|
|
import { ResetPasswordComponent } from './reset-password/reset-password.component';
|
2018-05-06 09:40:18 +00: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 06:59:49 +00:00
|
|
|
|
|
|
|
export const COMPONENTS = [
|
2018-04-18 11:27:27 +00:00
|
|
|
ProfileComponent,
|
2018-04-06 06:59:49 +00:00
|
|
|
SigninComponent,
|
|
|
|
SignupComponent,
|
|
|
|
ResetPasswordComponent,
|
2018-05-06 09:40:18 +00:00
|
|
|
ModifyPasswordComponent,
|
2018-05-03 07:19:10 +00:00
|
|
|
PolicyComponent,
|
|
|
|
TermsComponent,
|
2018-04-19 12:35:11 +00:00
|
|
|
SETTINGS_COMPONENTS,
|
2018-04-06 06:59:49 +00:00
|
|
|
];
|