diff options
-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>; }; |