14 lines
221 B
JavaScript
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;
|