Tweaks
This commit is contained in:
@ -6,7 +6,7 @@ import { ProductCard } from "./ProductCard";
|
|||||||
function Products({ machineName, products, onSelect }) {
|
function Products({ machineName, products, onSelect }) {
|
||||||
const productItems = products.map((product) => {
|
const productItems = products.map((product) => {
|
||||||
return (
|
return (
|
||||||
<Grid md={6} key={product.id}>
|
<Grid md={6} key={product.id} sx={{ display: "flex" }}>
|
||||||
<ProductCard product={product} />
|
<ProductCard product={product} />
|
||||||
</Grid>
|
</Grid>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user