Cart-Component und zugehöriges Routing hinzugefügt
[examples/angular-tutorial] / src / app / cart / cart.component.ts
1 import { Component, OnInit } from '@angular/core';
2
3 @Component({
4   selector: 'app-cart',
5   templateUrl: './cart.component.html',
6   styleUrls: ['./cart.component.css']
7 })
8 export class CartComponent implements OnInit {
9
10   constructor() { }
11
12   ngOnInit() {
13   }
14
15 }