X-Git-Url: https://juplo.de/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fapp.module.ts;h=9fa5aad8346145e8a61e9f140cd7e9b346869f95;hb=407dfe41df942c3079dee61e1fc1ed6094bb3bd5;hp=2bc4940fda2ee668354d5e3cda3f766c9bcec679;hpb=603f40c6f8565d6d183d3e46451110d3b0add1e7;p=examples%2Fangular-tutorial diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 2bc4940..9fa5aad 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -7,6 +7,7 @@ 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: [ @@ -14,13 +15,15 @@ import { ProductAlertsComponent } from './product-alerts/product-alerts.componen TopBarComponent, ProductListComponent, ProductDetailsComponent, - ProductAlertsComponent + ProductAlertsComponent, + CartComponent ], imports: [ BrowserModule, RouterModule.forRoot([ { path: '', component: ProductListComponent }, - { path: 'products/:productId', component: ProductDetailsComponent } + { path: 'products/:productId', component: ProductDetailsComponent }, + { path: 'cart', component: CartComponent } ]) ], providers: [],