[251006] feat: views - PlayerPanel.jsx, LiveShowContainer.jsx, LiveSho...

🕐 커밋 시간: 2025. 10. 06. 17:12:55

📊 변경 통계:
  • 총 파일: 7개
  • 추가: +33줄
  • 삭제: -15줄

📁 추가된 파일:
  + com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/LiveShowContainer.jsx
  + com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/LiveShowContainer.module.less
  + com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/ShopNowButton.jsx
  + com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/ShopNowButton.module.less
  + com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/ShopNowContainer.jsx
  + com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/ShopNowContainer.module.less

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

🔧 함수 변경 내용:
  📄 com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/LiveShowContainer.module.less (unknown):
     Added: position(), gradient(), focused()
  📄 com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/ShopNowButton.module.less (unknown):
     Added: position(), gradient(), focused()
  📄 com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/ShopNowContainer.module.less (unknown):
     Added: position(), gradient()
This commit is contained in:
2025-10-06 17:12:57 +09:00
parent 66ba686f33
commit ea5a855019
7 changed files with 405 additions and 15 deletions

View File

@@ -0,0 +1,17 @@
import React from 'react';
import Spottable from '@enact/spotlight/Spottable';
import css from './ShopNowButton.module.less';
const SpottableDiv = Spottable('div');
export default function ShopNowButton({ onClick }) {
return (
<div className={css.container}>
<SpottableDiv className={css.shopNowButton} onClick={onClick} spotlightId="shop-now-button">
<span className={css.buttonText}>SHOP NOW</span>
</SpottableDiv>
</div>
);
}