2017-12-19 13:53:46 +01:00
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
import {SearchFilterComponent} from './searchFilter.component';
|
|
|
|
import{SearchFilterModalComponent} from './searchFilterModal.component';
|
|
|
|
import {ModalModule} from '../../utils/modal/modal.module';
|
2020-03-12 11:48:04 +01:00
|
|
|
import {MatSelectModule} from "@angular/material";
|
2020-10-20 11:11:15 +02:00
|
|
|
import {RouterModule} from "@angular/router";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2020-10-20 11:11:15 +02:00
|
|
|
CommonModule, FormsModule, ModalModule, MatSelectModule, RouterModule
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
SearchFilterComponent, SearchFilterModalComponent
|
|
|
|
],
|
|
|
|
|
|
|
|
providers:[
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
SearchFilterComponent, SearchFilterModalComponent
|
|
|
|
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class SearchFilterModule { }
|