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.67 KB | None | 0 0
  1. import { BrowserModule } from '@angular/platform-browser';
  2. import { NgModule } from '@angular/core';
  3. import { FormsModule } from '@angular/forms';
  4.  
  5. import { AppComponent } from './app.component';
  6.  
  7. import { MainHeaderModule } from './header/main-header.module';
  8. import { RankingModule } from './ranking/ranking.module';
  9. import { SearchModule } from './search/search.module';
  10.  
  11. import { AppRoutingModule } from './app-routing.module';
  12.  
  13. @NgModule({
  14. imports: [
  15. BrowserModule,
  16. FormsModule,
  17.  
  18. MainHeaderModule,
  19. RankingModule,
  20. SearchModule,
  21.  
  22. AppRoutingModule
  23. ],
  24. providers: [],
  25. declarations: [AppComponent],
  26. bootstrap: [AppComponent]
  27. })
  28. export class AppModule { }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement