oem-automation-frontend/src/components/mainPage/paypal.jsx
John Huang@tthqws02 99b37dbd23 ADD: main body page
2021-11-09 08:11:57 -05:00

14 lines
221 B
JavaScript

import React from "react";
const PayPal = () => {
return (
<>
<div className="container">
<button className="bg-primary"> Pay with PayPal</button>
</div>
</>
);
};
export default PayPal;