{recipe.title}
{recipe.description && ({recipe.description}
)}{m.recipe.ingredients}
-
{recipe.ingredients.map((ing) => (
- {[hasQuantity(ing.quantity) ? ing.quantity : null, ing.unit].filter(Boolean).join(" ")} {ing.rawName} {ing.note && ({ing.note})} ))}
{m.recipe.instructions}
-
{recipe.steps.map((step) => (
- {step.instruction} {step.timerSeconds && ( ⏱ {Math.floor(step.timerSeconds / 60)} min )} ))}