+ {mockProducts.map(
+ ({
+ id,
+ title,
+ brand,
+ imageUrl,
+ discountRate,
+ originalPrice,
+ discountPrice,
+ colorHexes,
+ saveCount,
+ linkUrl,
+ }) => {
+ const isSelected = selectedProductIds.includes(id);
+ return (
+
+ handleSelectMockProduct({
+ id,
+ title,
+ brand,
+ imageUrl,
+ originalPrice,
+ discountPrice,
+ discountRate,
+ }),
+ }}
+ />
+ );
+ }
+ )}
+
+