2018-11-21 16:24:14 +01:00
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
import{SearchSortingComponent} from './searchSorting.component';
|
2020-03-12 11:48:04 +01:00
|
|
|
import {MatSelectModule} from "@angular/material";
|
2018-11-21 16:24:14 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2020-03-12 11:48:04 +01:00
|
|
|
CommonModule, FormsModule, RouterModule, MatSelectModule
|
2018-11-21 16:24:14 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
SearchSortingComponent
|
|
|
|
],
|
|
|
|
|
|
|
|
providers:[
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
SearchSortingComponent
|
|
|
|
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class SearchSortingModule { }
|