react-paysofter
Version:
This is a ReactJS package for integrating Paysofter payment gateway into your ReactJS application.
18 lines (15 loc) • 405 B
JavaScript
// BankPayment.js
import React from "react";
import 'bootstrap/dist/css/bootstrap.min.css';
function BankPayment() {
// Bank transfer payment UI elements and logic
return (
<>
<div className="py-2 d-flex justify-content-center">
<h2 className="text-center py-2">Bank </h2>
<div>Coming soon...</div>
</div>
</>
);
}
export default BankPayment;