23 lines
609 B
TypeScript
23 lines
609 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { FormattingModule } from '@app/core/formatting.module';
|
||
|
import { AutoCompleteModule } from '@app/library/auto-complete/auto-complete.module';
|
||
|
import { CommonFormsModule } from '@common/forms/common-forms.module';
|
||
|
import { CommonUiModule } from '@common/ui/common-ui.module';
|
||
|
import { UserFieldComponent } from './user-field.component';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonUiModule,
|
||
|
CommonFormsModule,
|
||
|
FormattingModule,
|
||
|
AutoCompleteModule
|
||
|
],
|
||
|
declarations: [
|
||
|
UserFieldComponent
|
||
|
],
|
||
|
exports: [
|
||
|
UserFieldComponent
|
||
|
]
|
||
|
})
|
||
|
export class UserFieldModule { }
|