500bd05d33929be66be1dd900e357aa02600cf76
[examples/angular-tutorial] / src / app / cart / cart.component.ts
1 import { Component, OnInit } from '@angular/core';
2 import { CartService } from '../cart.service';
3
4 @Component({
5   selector: 'app-cart',
6   templateUrl: './cart.component.html',
7   styleUrls: ['./cart.component.css']
8 })
9 export class CartComponent implements OnInit {
10
11   items;
12
13   constructor(private cartService: CartService) { }
14
15   ngOnInit() {
16     this.items = this.cartService.getItems();
17   }
18
19 }