aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-09-12 00:54:22 +0100
committerGravatar Joe Banks <[email protected]>2024-09-12 00:54:22 +0100
commitbf1195aeab9f9e2d975085b9b4f9c7beeaea5e2b (patch)
treec27ecdd344af677f1b5a5e0d0d8050a26fd2c001
parentAdd new CartConfirm component for displaying cart contents on checkout (diff)
Use new CartConfirm component in CheckoutPage
-rw-r--r--thallium-frontend/src/pages/CheckoutPage.tsx4
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");
}}>&lt; Return to store</Button>
<Card title="Cart">
- {/* TODO */}
- Not yet implemented.
+ <CartConfirm/>
</Card>
</MaxWidthContainer>;
};