mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
25 lines
566 B
JavaScript
25 lines
566 B
JavaScript
import React from "react";
|
|
|
|
export const IngredientList = props => {
|
|
const { ingredients } = props;
|
|
return (
|
|
<div className="ingredientList">
|
|
<table className="striped highlight responsive-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Ingredient</th>
|
|
<th>Quantity</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{ingredients.map((ing, i) => (
|
|
<tr key={i}>
|
|
<td>{ing[0]}</td>
|
|
<td>{ing[1]}</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
);
|
|
};
|