first commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
export default function IngredientsList(props) {
|
||||
const ingredientsListItems = props.ingredients.map(ingredient => (
|
||||
<li key={ingredient}>{ingredient}</li>
|
||||
))
|
||||
return (
|
||||
<section>
|
||||
<h2>Ingredients on hand:</h2>
|
||||
<ul className="ingredients-list" aria-live="polite">{ingredientsListItems}</ul>
|
||||
{props.ingredients.length > 3 && <div className="get-recipe-container">
|
||||
<div ref={props.ref}>
|
||||
<h3>Ready for a recipe?</h3>
|
||||
<p>Generate a recipe from your list of ingredients.</p>
|
||||
</div>
|
||||
<button onClick={props.getRecipe}>Get a recipe</button>
|
||||
</div>}
|
||||
</section>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user