oem-automation-frontend/src/components/mainPage/paypal.jsx

14 lines
221 B
React
Raw Normal View History

2021-11-09 08:11:57 -05:00
import React from "react";
const PayPal = () => {
return (
<>
<div className="container">
<button className="bg-primary"> Pay with PayPal</button>
</div>
</>
);
};
export default PayPal;