홈패널 css 추가 및 서브 카테고리 생성 작업중.
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 6.9 KiB |
BIN
com.twin.app.shoptime/assets/icon/foc/ic-category-cw-foc@3x.png
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 4.9 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 5.3 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 6.4 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 6.5 KiB |
BIN
com.twin.app.shoptime/assets/icon/nor/ic-category-cw-nor@3x.png
Normal file
|
After Width: | Height: | Size: 8.6 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 6.0 KiB |
@@ -0,0 +1,30 @@
|
||||
import React from "react";
|
||||
import classNames from "classnames";
|
||||
import { $L } from "../../utils/helperMethods";
|
||||
import { Job } from "@enact/core/util";
|
||||
import Spotlight from "@enact/spotlight";
|
||||
import Spottable from "@enact/spotlight/Spottable";
|
||||
|
||||
import css from "../SubCategory/SubCategory.module.less";
|
||||
|
||||
import testimg from "../../../assets/icon/nor/ic-category-home-nor@3x.png";
|
||||
import testimg2 from "../../../assets/icon/nor/ic-category-home-nor@3x.png";
|
||||
|
||||
const SubCategory = () => {
|
||||
return (
|
||||
<div className={css.container}>
|
||||
<div className={css.cateList}>
|
||||
<ul>
|
||||
<li>
|
||||
<div className={css.cateImg}>
|
||||
<img src={testimg} className={css.cateImeDesign} />
|
||||
</div>
|
||||
<div className={css.cateName}>Kitchen & food</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default SubCategory;
|
||||
@@ -3,14 +3,17 @@ import React from "react";
|
||||
import TPanel from "../../components/TPanel/TPanel";
|
||||
import { $L } from "../../utils/helperMethods";
|
||||
|
||||
import css from "../HomePanel/HomePanel.module.less";
|
||||
|
||||
import Template from "../../components/HomeBanner/Template";
|
||||
import OnSale from "../../components/OnSale/OnSale";
|
||||
import SubCategory from "../../components/SubCategory/SubCategory";
|
||||
|
||||
export default function HomePanel() {
|
||||
return (
|
||||
<TPanel>
|
||||
<TPanel className={css.panelDesign}>
|
||||
<Template />
|
||||
|
||||
<SubCategory />
|
||||
<OnSale />
|
||||
</TPanel>
|
||||
);
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
.panelDesign {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||