file: create Checkout component along with its stylesheet

This commit is contained in:
Leon Xu
2022-05-05 20:51:49 -07:00
parent 83b2b70214
commit 9a0a1aa344
2 changed files with 8 additions and 0 deletions
View File
+8
View File
@@ -0,0 +1,8 @@
import React from "react";
import "./Checkout.css";
function Checkout() {
return <section className="checkout">Checkout</section>;
}
export default Checkout;