19 lines
577 B
TypeScript
19 lines
577 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonFormsModule } from '../../common/forms/common-forms.module';
|
|
import { CommonUiModule } from '../../common/ui/common-ui.module';
|
|
import { FormattingModule } from '../../core/formatting.module';
|
|
import { UserProfileComponent } from './user-profile.component';
|
|
import { UserProfileRoutingModule } from './user-profile.routing';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonUiModule,
|
|
CommonFormsModule,
|
|
FormattingModule,
|
|
UserProfileRoutingModule
|
|
],
|
|
declarations: [
|
|
UserProfileComponent
|
|
]
|
|
})
|
|
export class UserProfileModule { } |