Cart-Component und zugehöriges Routing hinzugefügt
[examples/angular-tutorial] / src / app / cart / cart.component.ts
diff --git a/src/app/cart/cart.component.ts b/src/app/cart/cart.component.ts
new file mode 100644 (file)
index 0000000..c9276d4
--- /dev/null
@@ -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() {
+  }
+
+}