X-Git-Url: https://juplo.de/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fapp.module.ts;h=9fa5aad8346145e8a61e9f140cd7e9b346869f95;hb=407dfe41df942c3079dee61e1fc1ed6094bb3bd5;hp=a20e2d05dad50083ab128d130e7227c0959af853;hpb=bfe15f71205934d62304ce869cb81aeaec551593;p=examples%2Fangular-tutorial diff --git a/src/app/app.module.ts b/src/app/app.module.ts index a20e2d0..9fa5aad 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -6,19 +6,24 @@ import { AppComponent } from './app.component'; import { TopBarComponent } from './top-bar/top-bar.component'; import { ProductListComponent } from './product-list/product-list.component'; import { ProductDetailsComponent } from './product-details/product-details.component'; +import { ProductAlertsComponent } from './product-alerts/product-alerts.component'; +import { CartComponent } from './cart/cart.component'; @NgModule({ declarations: [ AppComponent, TopBarComponent, ProductListComponent, - ProductDetailsComponent + ProductDetailsComponent, + ProductAlertsComponent, + CartComponent ], imports: [ BrowserModule, RouterModule.forRoot([ { path: '', component: ProductListComponent }, - { path: 'products/:productId', component: ProductDetailsComponent } + { path: 'products/:productId', component: ProductDetailsComponent }, + { path: 'cart', component: CartComponent } ]) ], providers: [],