Project

General

Profile

1
import { NgModule}            from '@angular/core';
2
import { CommonModule }        from '@angular/common';
3
import { FormsModule }         from '@angular/forms';
4
import { RouterModule }       from '@angular/router';
5

    
6
import{SearchSortingComponent} from './searchSorting.component';
7
import {MatSelectModule} from "@angular/material";
8

    
9
@NgModule({
10
  imports: [
11
    CommonModule, FormsModule, RouterModule, MatSelectModule
12
  ],
13
  declarations: [
14
    SearchSortingComponent
15
],
16

    
17
  providers:[
18
  ],
19
  exports: [
20
    SearchSortingComponent
21

    
22
    ]
23
})
24
export class SearchSortingModule { }
(40-40/44)