[DetailPanel] Option component 폴더 및 파일 추가

This commit is contained in:
jiwon93.son
2024-02-16 15:26:28 +09:00
parent dd7bb03c2a
commit e1293514ba
9 changed files with 79 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import { getMainCategoryDetail } from "../../actions/mainActions";
import TBody from "../../components/TBody/TBody";
import THeader from "../../components/THeader/THeader";
import TPanel from "../../components/TPanel/TPanel";
import ProductOption from "./container/ProductOption";
import ProductThumbnail from "./container/ProductThumbnail";
import css from "./DetailPanel.module.less";
@@ -38,6 +39,10 @@ export default function ItemDetail() {
/>
<TBody className={css.container} scrollable={false}>
<ProductThumbnail productData={productData} />
<ProductOption
selectedPatnrId={selectedPatnrId}
selectedPardtId={selectedPardtId}
/>
</TBody>
</TPanel>
);