|
|
|
@@ -5,15 +5,29 @@ import { HttpModule } from '@angular/http'; |
|
|
|
|
|
|
|
|
|
|
|
import { AppComponent } from './app.component'; |
|
|
|
import { HeaderComponent } from './header/header.component'; |
|
|
|
import { RecipesComponent } from './recipes/recipes.component'; |
|
|
|
import { RecipeListComponent } from './recipes/recipe-list/recipe-list.component'; |
|
|
|
import { RecipeDetailComponent } from './recipes/recipe-detail/recipe-detail.component'; |
|
|
|
import { RecipeItemComponent } from './recipes/recipe-list/recipe-item/recipe-item.component'; |
|
|
|
import { ShoppingListComponent } from './shopping-list/shopping-list.component'; |
|
|
|
import { ShoppingEditComponent } from './shopping-list/shopping-edit/shopping-edit.component'; |
|
|
|
|
|
|
|
|
|
|
|
@NgModule({ |
|
|
|
declarations: [ |
|
|
|
AppComponent |
|
|
|
AppComponent, |
|
|
|
HeaderComponent, |
|
|
|
RecipesComponent, |
|
|
|
RecipeListComponent, |
|
|
|
RecipeDetailComponent, |
|
|
|
RecipeItemComponent, |
|
|
|
ShoppingListComponent, |
|
|
|
ShoppingEditComponent |
|
|
|
], |
|
|
|
imports: [ |
|
|
|
BrowserModule, |
|
|
|
FormsModule, |
|
|
|
FormsModule, |
|
|
|
HttpModule |
|
|
|
], |
|
|
|
providers: [], |
|
|
|
|