[250925] feat: components - App.js, store.js, ProductAllSection.jsx 등 16개 파...

🕐 커밋 시간: 2025. 09. 25. 13:03:22

📊 변경 통계:
  • 총 파일: 16개
  • 추가: +116줄

📁 추가된 파일:
  + com.twin.app.shoptime/src/actions/toastActions.js
  + com.twin.app.shoptime/src/components/TToast/TToastEnhanced.jsx
  + com.twin.app.shoptime/src/components/TToast/TToastEnhanced.module.less
  + com.twin.app.shoptime/src/components/TToast/ToastContainer.jsx
  + com.twin.app.shoptime/src/components/TToast/ToastContainer.module.less
  + com.twin.app.shoptime/src/reducers/toastReducer.js
  + com.twin.app.shoptime/src/views/DetailPanel/components/BuyOption.jsx
  + com.twin.app.shoptime/src/views/DetailPanel/components/BuyOption.module.less
  + com.twin.app.shoptime/src/views/DetailPanel/components/BuyOptionPriceBlock.jsx
  + com.twin.app.shoptime/src/views/DetailPanel/components/BuyOptionPriceBlock.module.less
  + com.twin.app.shoptime/src/views/DetailPanel/components/CustomDropDown.jsx
  + com.twin.app.shoptime/src/views/DetailPanel/components/CustomDropDown.module.less

📝 수정된 파일:
  ~ com.twin.app.shoptime/src/App/App.js
  ~ com.twin.app.shoptime/src/store/store.js
  ~ com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.jsx
  ~ com.twin.app.shoptime/src/views/DetailPanel/ProductAllSection/ProductAllSection.module.less

🔧 주요 변경 내용:
  • 핵심 비즈니스 로직 개선
  • UI 컴포넌트 아키텍처 개선
  • 중간 규모 기능 개선
  • 모듈 구조 개선
This commit is contained in:
djaco
2025-09-25 13:03:29 +09:00
parent 41c4d45061
commit 4296d89bc6
16 changed files with 1664 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ import {
} from "../actions/myPageActions";
import { pushPanel } from "../actions/panelActions";
import NotSupportedVersion from "../components/NotSupportedVersion/NotSupportedVersion";
import ToastContainer from "../components/TToast/ToastContainer";
import usePrevious from "../hooks/usePrevious";
import { lunaTest } from "../lunaSend/lunaTest";
import { store } from "../store/store";
@@ -522,6 +523,7 @@ function AppBase(props) {
}
/>
)}
<ToastContainer />
</ErrorBoundary>
);
}