meal_planner/src/containers/Meal/components/MealIngredientList.tsx
2021-03-28 15:30:59 +02:00

26 lines
553 B
TypeScript

import { FC } from "react";
type Props = {
ingredients: string[];
};
export const MealIngredientList: FC<Props> = ({ ingredients }) => (
<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>
);