summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/pre-cook-pop-up/pre-cook-pop-up.component.html
blob: dc87efd9fcefccf2366506dbe29d13a588c2ca8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div>
{{cookedRecipe.name}}
	<div>
		Serving Size: {{cookedRecipe.servingSize}} 
	</div>
	<div> Ingredients:
		<li *ngFor="let ing of cookedRecipe.ingredients">
			{{ing.name}}, {{ing.amount}} unit: {{ing.units}}
	
	</div>
</div>

<button routerLink="/cook"> Ready </button>