20 lines
728 B
TypeScript
20 lines
728 B
TypeScript
import { ProfileComponent } from './profile/profile.component';
|
|
import { SigninComponent } from './signin/signin.component';
|
|
import { SignupComponent } from './signup/signup.component';
|
|
import { ResetPasswordComponent } from './reset-password/reset-password.component';
|
|
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';
|
|
|
|
export const COMPONENTS = [
|
|
ProfileComponent,
|
|
SigninComponent,
|
|
SignupComponent,
|
|
ResetPasswordComponent,
|
|
ModifyPasswordComponent,
|
|
PolicyComponent,
|
|
TermsComponent,
|
|
SETTINGS_COMPONENTS,
|
|
];
|