file: create Payment component along with its stylesheet

This commit is contained in:
Leon Xu
2022-05-07 13:37:07 -07:00
parent a6a21a2653
commit 27e3c294a2
2 changed files with 8 additions and 0 deletions
View File
+8
View File
@@ -0,0 +1,8 @@
import React from "react";
import "./Payment.css";
function Payment() {
return <section className="payment">Payment</section>;
}
export default Payment;