[offerInfo] Props 추가건

- home/bestseller, home/subcategory 추가.
This commit is contained in:
junghoon86.park
2024-03-18 16:49:28 +09:00
parent 8773b9ac15
commit 76679023b0
2 changed files with 2 additions and 0 deletions

View File

@@ -79,6 +79,7 @@ const BestSeller = () => {
onFocus={index === 0 ? handleScrollReset : null} onFocus={index === 0 ? handleScrollReset : null}
onBlur={handleStopScrolling} onBlur={handleStopScrolling}
onClick={() => handleCardClick(item)} onClick={() => handleCardClick(item)}
offerInfo={item.offerInfo}
/> />
))} ))}

View File

@@ -132,6 +132,7 @@ const SubCategory = () => {
onFocus={index === 0 ? handleScrollReset : null} onFocus={index === 0 ? handleScrollReset : null}
onBlur={handleStopScrolling} onBlur={handleStopScrolling}
onClick={() => handleCardClick(item)} onClick={() => handleCardClick(item)}
offerInfo={item.offerInfo}
/> />
); );
})} })}