diff options
author | 2024-09-12 00:54:22 +0100 | |
---|---|---|
committer | 2024-09-12 00:54:22 +0100 | |
commit | bf1195aeab9f9e2d975085b9b4f9c7beeaea5e2b (patch) | |
tree | c27ecdd344af677f1b5a5e0d0d8050a26fd2c001 | |
parent | Add new CartConfirm component for displaying cart contents on checkout (diff) |
Use new CartConfirm component in CheckoutPage
-rw-r--r-- | thallium-frontend/src/pages/CheckoutPage.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thallium-frontend/src/pages/CheckoutPage.tsx b/thallium-frontend/src/pages/CheckoutPage.tsx index 4206360..a271839 100644 --- a/thallium-frontend/src/pages/CheckoutPage.tsx +++ b/thallium-frontend/src/pages/CheckoutPage.tsx @@ -1,4 +1,5 @@ import Card from "../components/Card"; +import CartConfirm from "../components/CartConfirm"; import MaxWidthContainer from "../components/MaxWidthContainer"; import Button from "../components/forms/Button"; import { useNavigate } from "react-router-dom"; @@ -12,8 +13,7 @@ const CheckoutPage = () => { navigate("/store"); }}>< Return to store</Button> <Card title="Cart"> - {/* TODO */} - Not yet implemented. + <CartConfirm/> </Card> </MaxWidthContainer>; }; |