checkout panel 생성

This commit is contained in:
고동영
2024-03-05 18:26:13 +09:00
parent 96833e1084
commit 914921de31
2 changed files with 3 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ export const panel_names = {
WELCOME_EVENT_PANEL: "welcomeeventpanel",
DETAIL_PANEL: "detailpanel",
PLAYER_PANEL: "playerpanel",
CHECKOUT_PANEL: "checkoutpanel",
// error
ERROR_PANEL: "errorpanel",

View File

@@ -16,6 +16,7 @@ import TToast from "../../components/TToast/TToast";
import * as Config from "../../utils/Config";
import CartPanel from "../CartPanel/CartPanel";
import CategoryPanel from "../CategoryPanel/CategoryPanel";
import CheckOutPanel from "../CheckOutPanel/CheckOutPanel";
import DebugPanel from "../DebugPanel/DebugPanel";
import DetailPanel from "../DetailPanel/DetailPanel";
import ErrorPanel from "../ErrorPanel/ErrorPanel";
@@ -48,6 +49,7 @@ const panelMap = {
[Config.panel_names.DEBUG_PANEL]: DebugPanel,
[Config.panel_names.DETAIL_PANEL]: DetailPanel,
[Config.panel_names.PLAYER_PANEL]: PlayerPanel,
[Config.panel_names.CHECKOUT_PANEL]: CheckOutPanel,
};
export default function MainView() {