Not quite the style yet... But!

This commit is contained in:
DavidBelisle
2022-10-14 23:36:59 -04:00
parent 1f7c97949d
commit 355e1761b4
8 changed files with 104 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
import Item from './Item';
const ItemList = ({ items }) => {
return (
<div>
{items.map((item) =>
<Item imageUrl={item.imageUrl}
name={item.name}
price={item.price}
status={item.status}
/>
)}
</div>
)
}
export default ItemList;