argos/dmp-frontend/src/common/modules/text-filter/text-filter.module.ts

24 lines
640 B
TypeScript

import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { ExpandableSearchFieldComponent } from '@common/modules/text-filter/expandable-search-field/expandable-search-field.component';
import { TextFilterComponent } from '@common/modules/text-filter/text-filter.component';
import { CommonUiModule } from '@common/ui/common-ui.module';
@NgModule({
imports: [
CommonUiModule,
FormsModule
],
declarations: [
TextFilterComponent,
ExpandableSearchFieldComponent
],
exports: [
TextFilterComponent,
ExpandableSearchFieldComponent
]
})
export class TextFilterModule {
constructor() { }
}