25 lines
579 B
TypeScript
25 lines
579 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';
|
|
import {MatSelectModule} from "@angular/material";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule, FormsModule, RouterModule, MatSelectModule
|
|
],
|
|
declarations: [
|
|
SearchSortingComponent
|
|
],
|
|
|
|
providers:[
|
|
],
|
|
exports: [
|
|
SearchSortingComponent
|
|
|
|
]
|
|
})
|
|
export class SearchSortingModule { }
|