14 lines
221 B
React
14 lines
221 B
React
![]() |
import React from "react";
|
||
|
|
||
|
const PayPal = () => {
|
||
|
return (
|
||
|
<>
|
||
|
<div className="container">
|
||
|
<button className="bg-primary"> Pay with PayPal</button>
|
||
|
</div>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default PayPal;
|