2023-08-01 10:40:55 +02:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {RouterModule} from '@angular/router';
|
2018-11-21 16:24:14 +01:00
|
|
|
|
2023-08-01 10:40:55 +02:00
|
|
|
import {SearchSortingComponent} from './searchSorting.component';
|
2022-04-05 14:26:26 +02:00
|
|
|
import {InputModule} from '../../sharedComponents/input/input.module';
|
2018-11-21 16:24:14 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2023-08-01 10:40:55 +02:00
|
|
|
CommonModule, FormsModule, RouterModule, InputModule
|
2018-11-21 16:24:14 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
SearchSortingComponent
|
|
|
|
],
|
|
|
|
|
|
|
|
providers:[
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
SearchSortingComponent
|
|
|
|
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class SearchSortingModule { }
|