This commit is contained in:
2026-01-24 14:01:54 -05:00
parent 517fc25196
commit f416654416

View File

@@ -11,11 +11,13 @@ type ProductCardProps = {
const ProductCards = ({ products, addProductLine } : ProductCardProps) => {
return (
<div className={styles.container}>
{ products.map((product) => {
{
products.map((product) => {
return (
<Card key={product.id} product={product} addProductLine={addProductLine}/>
)
}) }
})
}
</div>
)
}