<RecipeList> {/* RecipeList is just a wraper */}
{this.state.recipes.map(recipe => (
<RecipeListItem
key={recipe.href}
thumbnail={recipe.thumbnail}
href={recipe.href}
title={recipe.title}
ingredients={recipe.ingredients}
// {...recipe} this is the line can be used if you want to pass all the items in the object that is sent from API.the line 76, 77, 78, 79 can be removed
/>
</RecipeList>