checkout panel create

This commit is contained in:
고동영
2024-03-05 18:22:22 +09:00
parent a1a1e9891c
commit 410262ac1e
14 changed files with 799 additions and 18 deletions

View File

@@ -0,0 +1,36 @@
import React from "react";
import { useDispatch } from "react-redux";
import { popPanel } from "../../actions/panelActions";
import TBody from "../../components/TBody/TBody";
import THeader from "../../components/THeader/THeader";
import TPanel from "../../components/TPanel/TPanel";
import TScroller from "../../components/TScroller/TScroller";
import css from "./CheckOutPanel.module.less";
import InformationContainer from "./container/InformationContainer";
import SummaryContainer from "./container/SummaryCotainer";
export default function CheckOutPanel() {
const dispatch = useDispatch();
const onBackClick = () => {
dispatch(popPanel());
};
return (
<TPanel isTabActivated={false}>
<THeader
className={css.theader}
title="CHECKOUT"
onBackButton
onClick={onBackClick}
/>
<TBody className={css.tbody}>
<div className={css.Wrap}>
<SummaryContainer />
<InformationContainer />
</div>
</TBody>
</TPanel>
);
}