From ed1c7d95398c90263db74937a780e71f43475012 Mon Sep 17 00:00:00 2001 From: Chris Undercoffer Date: Wed, 11 Dec 2019 15:23:04 -0500 Subject: add shoppingcart base functionality can add items but not remove, not able to print list yet --- .../app/shopping-cart/shopping-cart.component.html | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 recipeBuddy/src/app/shopping-cart/shopping-cart.component.html (limited to 'recipeBuddy/src/app/shopping-cart/shopping-cart.component.html') diff --git a/recipeBuddy/src/app/shopping-cart/shopping-cart.component.html b/recipeBuddy/src/app/shopping-cart/shopping-cart.component.html new file mode 100644 index 0000000..a4e87ab --- /dev/null +++ b/recipeBuddy/src/app/shopping-cart/shopping-cart.component.html @@ -0,0 +1,28 @@ +
+
+

Recipes

+ + + {{recipe.name}} + + +
+
+

Ingredients

+
+

{{selectedRecipe.value.name}}

+ + + {{ing.name}} {{ing.amount}} {{ing.unit}} + + +
+
+
+

Shopping List

+ + {{cartItem.name}} {{cartItem.amount}} {{cartItem.unit}} + + +
+
\ No newline at end of file -- cgit v1.1