Please enter ingredients: Quantity, Unit, Name
Please enter each step on a new line
{recipe.name}
- +{recipe.name}
+{recipe.details.name}
-{recipe.details.cuisine}
-Ingredients:
--
- {recipe.ingredients.map((ingredient: Ingredient, index) => (
-
- {ingredient.quantity} {ingredient.unit} {ingredient.name} - ))} -
Steps:
--
- {recipe.steps && Object.keys(recipe.steps || {}).map((stepNumber) => (
-
- {recipe.steps?.[parseInt(stepNumber)]} - ))} -
Recipe Index
+Recipe Index
+{recipe.details.name}
+{recipe.details.cuisine}
++ + Ingredients: +
+-
+ {recipe.ingredients.map((ingredient: Ingredient, index) => (
+
- + + {ingredient.quantity} {ingredient.unit} {ingredient.name} + + ))} +
+ + Instructions: +
+-
+ {recipe.steps && Object.keys(recipe.steps || {}).map((stepNumber) => (
+
- + + {stepNumber} + + {recipe.steps[parseInt(stepNumber)]} + + ))} +