SearchPanel 작업 진행 중 - chw

This commit is contained in:
hyunwoo93.cha
2024-01-25 23:17:16 +09:00
parent cdd6a774b6
commit 8110067e29
9 changed files with 195 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ import { getHomeMenu } from "../features/home/homeSlice";
import { getOnSaleInfo } from "../features/onSale/onSaleSlice";
import MainView from "../views/MainView/MainView";
import css from "./App.module.less";
import { getMyRecommandedKeyword } from "../features/mypage/myPageSlice";
function AppBase(props) {
const dispatch = useDispatch();
@@ -19,6 +20,7 @@ function AppBase(props) {
dispatch(getHomeMenu());
dispatch(getOnSaleInfo({ categoryIncFlag: "Y", lgCatCd: "" }));
dispatch(getBrandList());
dispatch(getMyRecommandedKeyword());
}, [dispatch]);
return <MainView />;