Created
October 1, 2017 03:53
-
-
Save tkssharma/268cf578f22f855c0865212075d20fc9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { FormsModule } from '@angular/forms'; | |
import LoaderComponent from './loader/loader-component'; | |
import { NgModule } from '@angular/core'; | |
import { BrowserModule } from '@angular/platform-browser'; | |
import { AppComponent } from './app.component'; | |
import HeaderComponent from './header/app-header'; | |
import FooterComponent from './footer/app-footer'; | |
import MainComponent from './main/main-result'; | |
import {LoaderService} from './loader/loader-service'; | |
import {HttpClient} from './http.service'; | |
//import {LocalStorageService} from './local.storage.service'; | |
import {HttpModule} from '@angular/http'; | |
@NgModule({ | |
imports: [ | |
BrowserModule,FormsModule,HttpModule | |
], | |
declarations: [ | |
AppComponent,HeaderComponent,FooterComponent,MainComponent,LoaderComponent | |
], | |
providers : [LoaderService,HttpClient], | |
bootstrap: [ AppComponent ] | |
}) | |
export class AppModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment