This commit is contained in:
Eden Kirin
2024-01-16 17:07:09 +01:00
parent 636efa9744
commit 46543c83b1

View File

@ -6,7 +6,7 @@ import { ProductCard } from "./ProductCard";
function Products({ machineName, products, onSelect }) {
const productItems = products.map((product) => {
return (
<Grid md={6} key={product.id}>
<Grid md={6} key={product.id} sx={{ display: "flex" }}>
<ProductCard product={product} />
</Grid>
);