|
|
|
@@ -4,29 +4,29 @@ import { HttpModule } from '@angular/http'; |
|
|
|
import { HttpClientModule } from '@angular/common/http'; |
|
|
|
|
|
|
|
import { AppComponent } from './app.component'; |
|
|
|
import { HeaderComponent } from './header/header.component'; |
|
|
|
import { ShoppingListService } from './shopping-list/shopping-list.service'; |
|
|
|
import { AppRoutingModule } from './app-routing.module'; |
|
|
|
import { RecipeService } from './recipes/recipe.service'; |
|
|
|
import { DataStorageService } from './shared/data-storage.service'; |
|
|
|
import { AuthService } from './auth/auth.service'; |
|
|
|
import { AuthGuard } from './auth/auth-guard.service'; |
|
|
|
import { RecipesModule } from './recipes/recipes.module'; |
|
|
|
import { AuthModule } from './auth/auth.module'; |
|
|
|
import { AuthService } from './auth/auth.service'; |
|
|
|
import { DataStorageService } from './shared/data-storage.service'; |
|
|
|
import { HeaderComponent } from './header/header.component'; |
|
|
|
import { RecipeService } from './recipes/recipe.service'; |
|
|
|
import { SharedModule } from './shared/shared.module'; |
|
|
|
import { ShoppingListModule } from './shopping-list/shopping-list.module'; |
|
|
|
import { AuthModule } from './auth/auth.module'; |
|
|
|
import { ShoppingListService } from './shopping-list/shopping-list.service'; |
|
|
|
import { HomeComponent } from './home/home.component'; |
|
|
|
|
|
|
|
@NgModule({ |
|
|
|
declarations: [ |
|
|
|
AppComponent, |
|
|
|
HeaderComponent |
|
|
|
HeaderComponent, |
|
|
|
HomeComponent |
|
|
|
], |
|
|
|
imports: [ |
|
|
|
BrowserModule, |
|
|
|
HttpClientModule, |
|
|
|
HttpModule, |
|
|
|
AppRoutingModule, |
|
|
|
RecipesModule, |
|
|
|
SharedModule, |
|
|
|
ShoppingListModule, |
|
|
|
AuthModule |
|
|
|
|