Skip to content

Commit

Permalink
Use new CartConfirm component in CheckoutPage
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Sep 11, 2024
1 parent 7ec4030 commit bf1195a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thallium-frontend/src/pages/CheckoutPage.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand All @@ -12,8 +13,7 @@ const CheckoutPage = () => {
navigate("/store");
}}>&lt; Return to store</Button>
<Card title="Cart">
{/* TODO */}
Not yet implemented.
<CartConfirm/>
</Card>
</MaxWidthContainer>;
};
Expand Down

0 comments on commit bf1195a

Please sign in to comment.