X-Git-Url: https://juplo.de/gitweb/?p=examples%2Fangular-tutorial;a=blobdiff_plain;f=src%2Fapp%2Fcart%2Fcart.component.ts;fp=src%2Fapp%2Fcart%2Fcart.component.ts;h=c9276d4d36f3f2ccc25d981d94a778c051afcb6a;hp=0000000000000000000000000000000000000000;hb=407dfe41df942c3079dee61e1fc1ed6094bb3bd5;hpb=02a4f5e131cbac6f4fb820fb8ddd9332892be703 diff --git a/src/app/cart/cart.component.ts b/src/app/cart/cart.component.ts new file mode 100644 index 0000000..c9276d4 --- /dev/null +++ b/src/app/cart/cart.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-cart', + templateUrl: './cart.component.html', + styleUrls: ['./cart.component.css'] +}) +export class CartComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +}