24 lines
511 B
TypeScript
24 lines
511 B
TypeScript
|
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';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule, FormsModule, RouterModule
|
||
|
],
|
||
|
declarations: [
|
||
|
SearchSortingComponent
|
||
|
],
|
||
|
|
||
|
providers:[
|
||
|
],
|
||
|
exports: [
|
||
|
SearchSortingComponent
|
||
|
|
||
|
]
|
||
|
})
|
||
|
export class SearchSortingModule { }
|