From 9a0a1aa3442775213793dd67b0aff98eaeb8a49e Mon Sep 17 00:00:00 2001 From: Leon Xu Date: Thu, 5 May 2022 20:51:49 -0700 Subject: [PATCH] file: create Checkout component along with its stylesheet --- src/Checkout/Checkout.css | 0 src/Checkout/Checkout.js | 8 ++++++++ 2 files changed, 8 insertions(+) create mode 100644 src/Checkout/Checkout.css create mode 100644 src/Checkout/Checkout.js diff --git a/src/Checkout/Checkout.css b/src/Checkout/Checkout.css new file mode 100644 index 0000000..e69de29 diff --git a/src/Checkout/Checkout.js b/src/Checkout/Checkout.js new file mode 100644 index 0000000..a7ceda2 --- /dev/null +++ b/src/Checkout/Checkout.js @@ -0,0 +1,8 @@ +import React from "react"; +import "./Checkout.css"; + +function Checkout() { + return
Checkout
; +} + +export default Checkout;