[HomePanel] OnSale 명칭 변경건.
- OnSale -> HomeOnSale 변경.
This commit is contained in:
@@ -7,7 +7,7 @@ import Spottable from "@enact/spotlight/Spottable";
|
|||||||
|
|
||||||
import { getOnSaleInfo } from "../../../actions/onSaleActions";
|
import { getOnSaleInfo } from "../../../actions/onSaleActions";
|
||||||
import { $L } from "../../../utils/helperMethods";
|
import { $L } from "../../../utils/helperMethods";
|
||||||
import css from "./OnSale.module.less";
|
import css from "./HomeOnSale.module.less";
|
||||||
|
|
||||||
const Container = SpotlightContainerDecorator(
|
const Container = SpotlightContainerDecorator(
|
||||||
{ leaveFor: { left: "", right: "" }, enterTo: "last-focused" },
|
{ leaveFor: { left: "", right: "" }, enterTo: "last-focused" },
|
||||||
@@ -16,7 +16,7 @@ const Container = SpotlightContainerDecorator(
|
|||||||
|
|
||||||
const SpottableComponent = Spottable("li");
|
const SpottableComponent = Spottable("li");
|
||||||
|
|
||||||
const OnSale = ({
|
const HomeOnSale = ({
|
||||||
isOnTop,
|
isOnTop,
|
||||||
spotlightId,
|
spotlightId,
|
||||||
onScrollTop,
|
onScrollTop,
|
||||||
@@ -80,4 +80,4 @@ const OnSale = ({
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default OnSale;
|
export default HomeOnSale;
|
||||||
@@ -4,14 +4,12 @@ import { useDispatch, useSelector } from "react-redux";
|
|||||||
|
|
||||||
import TPanel from "../../components/TPanel/TPanel";
|
import TPanel from "../../components/TPanel/TPanel";
|
||||||
import { $L } from "../../utils/helperMethods";
|
import { $L } from "../../utils/helperMethods";
|
||||||
|
|
||||||
import css from "../HomePanel/HomePanel.module.less";
|
|
||||||
|
|
||||||
import HomeTemplate from "./HomeTemplate";
|
|
||||||
import OnSale from "../HomePanel/OnSale/OnSale";
|
|
||||||
import SubCategory from "../HomePanel/SubCategory/SubCategory";
|
|
||||||
import PopularShow from "../HomePanel/PopularShow/PopularShow";
|
|
||||||
import BestSeller from "../HomePanel/BestSeller/BestSeller";
|
import BestSeller from "../HomePanel/BestSeller/BestSeller";
|
||||||
|
import HomeOnSale from "../HomePanel/HomeOnSale/HomeOnSale";
|
||||||
|
import css from "../HomePanel/HomePanel.module.less";
|
||||||
|
import PopularShow from "../HomePanel/PopularShow/PopularShow";
|
||||||
|
import SubCategory from "../HomePanel/SubCategory/SubCategory";
|
||||||
|
import HomeTemplate from "./HomeTemplate";
|
||||||
|
|
||||||
export default function HomePanel() {
|
export default function HomePanel() {
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
@@ -63,7 +61,7 @@ export default function HomePanel() {
|
|||||||
// homeTopDisplayInfos={homeTopDisplayInfos}
|
// homeTopDisplayInfos={homeTopDisplayInfos}
|
||||||
/>
|
/>
|
||||||
<SubCategory />
|
<SubCategory />
|
||||||
<OnSale />
|
<HomeOnSale />
|
||||||
<PopularShow />
|
<PopularShow />
|
||||||
<BestSeller />
|
<BestSeller />
|
||||||
</TPanel>
|
</TPanel>
|
||||||
|
|||||||
Reference in New Issue
Block a user