export default function IngredientsList(props) { const ingredientsListItems = props.ingredients.map(ingredient => (
  • {ingredient}
  • )) return (

    Ingredients on hand:

    {props.ingredients.length > 3 &&

    Ready for a recipe?

    Generate a recipe from your list of ingredients.

    }
    ) }