[251009] feat TabContainer v2 스포트라이트 ID 및 경로

변경사항을 반영했습니다

🕐 커밋 시간: 2025. 10. 09. 21:22:02

📊 변경 통계:
  • 총 파일: 3개
  • 추가: +16줄
  • 삭제: -12줄

📝 수정된 파일:
  ~ com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx
  ~ com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/ShopNowButton.jsx
  ~ com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/TabContainer.v2.jsx

🔧 함수 변경 내용:
  📄 com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/ShopNowButton.jsx (javascript):
    🔄 Modified: Spottable()
This commit is contained in:
2025-10-09 21:22:03 +09:00
parent 0ea842e569
commit 7d2ea49c63
3 changed files with 39 additions and 45 deletions

View File

@@ -8,10 +8,10 @@ const SpottableDiv = Spottable('div');
export default function ShopNowButton({ onClick }) {
return (
<div className={css.container}>
<SpottableDiv className={css.shopNowButton} onClick={onClick} spotlightId="shop-now-button">
<SpottableDiv className={css.container} spotlightId="shop-now-button-container">
<div className={css.shopNowButton} onClick={onClick}>
<span className={css.buttonText}>SHOP NOW</span>
</SpottableDiv>
</div>
</div>
</SpottableDiv>
);
}