blob: 420636004e37aa8fd1ff1f288eb34bb9d15d4423 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import Card from "../components/Card";
import MaxWidthContainer from "../components/MaxWidthContainer";
import Button from "../components/forms/Button";
import { useNavigate } from "react-router-dom";
const CheckoutPage = () => {
const navigate = useNavigate();
return <MaxWidthContainer>
<h1>Checkout</h1>
<Button onClick={() => {
navigate("/store");
}}>< Return to store</Button>
<Card title="Cart">
{/* TODO */}
Not yet implemented.
</Card>
</MaxWidthContainer>;
};
export default CheckoutPage;
|