Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3.  
  4. import { SearchRoutingModule } from './search-routing.module';
  5. import { SearchComponent } from './search.component';
  6.  
  7. @NgModule({
  8. imports: [
  9. CommonModule,
  10.  
  11. SearchRoutingModule
  12. ],
  13. declarations: [SearchComponent],
  14. providers: []
  15. })
  16. export class SearchModule { }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement