24 lines
664 B
JavaScript
24 lines
664 B
JavaScript
// import { Elements } from "@stripe/react-stripe-js";
|
|
// import { loadStripe } from "@stripe/stripe-js";
|
|
// import React from "react";
|
|
// import MobilePaymentComponent from "./mobile-payment.component";
|
|
|
|
// const stripePromise = new Promise((resolve, reject) => {
|
|
// resolve(
|
|
// loadStripe(process.env.REACT_APP_STRIPE_PUBLIC_KEY, {
|
|
// stripeAccount: "acct_1Fa7lFIEahEZW8b4",
|
|
// })
|
|
// );
|
|
// });
|
|
|
|
// export default function MobilePaymentContainer() {
|
|
// return (
|
|
// <div>
|
|
// The mobile payment container.
|
|
// <Elements stripe={stripePromise}>
|
|
// <MobilePaymentComponent />
|
|
// </Elements>
|
|
// </div>
|
|
// );
|
|
// }
|