adding market place

This commit is contained in:
Nalvazhuthi
2025-03-26 11:30:17 +05:30
parent 932ab54631
commit b585e74fcb
14 changed files with 598 additions and 220 deletions

View File

@@ -0,0 +1,18 @@
import React from "react";
import Card from "./Card";
const CardsContainer: React.FC = () => {
const array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];
return (
<div className="cards-container-container">
<div className="header">Products You May Like</div>
<div className="cards-wrapper-container">
{array.map((index) => (
<Card key={index} />
))}
</div>
</div>
);
};
export default CardsContainer;