doc: add subtotal component

This commit is contained in:
Leon Xu
2022-05-05 21:16:19 -07:00
parent 64da4e8f8a
commit 1c48a6260a
+7 -1
View File
@@ -1,4 +1,8 @@
import React from "react";
// Import file
import Subtotal from "./Subtotal";
import "./Checkout.css";
function Checkout() {
@@ -16,7 +20,9 @@ function Checkout() {
</article>
</article>
<article className="checkout__right"></article>
<article className="checkout__right">
<Subtotal />
</article>
</section>
);
}