argos/dmp-frontend/src/app/ui/user-profile/user-profile.module.ts

32 lines
1.2 KiB
TypeScript
Raw Normal View History

2019-01-18 18:03:45 +01:00
import { NgModule } from '@angular/core';
import { FormattingModule } from '@app/core/formatting.module';
2020-10-23 09:49:09 +02:00
import { AutoCompleteModule } from '@app/library/auto-complete/auto-complete.module';
import { CommonFormsModule } from '@common/forms/common-forms.module';
import { FormValidationErrorsDialogModule } from '@common/forms/form-validation-errors-dialog/form-validation-errors-dialog.module';
import { CommonUiModule } from '@common/ui/common-ui.module';
import { LoginComponent } from '../auth/login/login.component';
import { LoginModule } from '../auth/login/login.module';
2020-10-26 10:57:06 +01:00
import { AddAccountDialogComponent } from './add-account/add-account-dialog.component';
import { AddAccountDialogModule } from './add-account/add-account-dialog.module';
2019-01-18 18:03:45 +01:00
import { UserProfileComponent } from './user-profile.component';
import { UserProfileRoutingModule } from './user-profile.routing';
@NgModule({
imports: [
CommonUiModule,
CommonFormsModule,
FormattingModule,
2020-10-23 09:49:09 +02:00
UserProfileRoutingModule,
AutoCompleteModule,
AddAccountDialogModule,
FormValidationErrorsDialogModule
2019-01-18 18:03:45 +01:00
],
declarations: [
UserProfileComponent
2020-10-26 10:57:06 +01:00
],
entryComponents: [
AddAccountDialogComponent
2019-01-18 18:03:45 +01:00
]
})
2020-10-23 09:49:09 +02:00
export class UserProfileModule { }