Product-List aus Tutorial übernommen (direkt mit Erweiterungen)
[examples/angular-tutorial] / src / app / products.ts
diff --git a/src/app/products.ts b/src/app/products.ts
new file mode 100644 (file)
index 0000000..998c38d
--- /dev/null
@@ -0,0 +1,17 @@
+export const products = [
+  {
+    name: 'Phone XXL',
+    price: 799,
+    description: 'A large phone with one of the best screens'
+  },
+  {
+    name: 'Phone Minion',
+    price: 699,
+    description: 'A great phone with one of the best cameras'
+  },
+  {
+    name: 'Pimmel-Phone',
+    price: 299,
+    description: ''
+  }
+];