#Arvind hariharan
1 messages · Page 1 of 1 (latest)
I see that there are two elements that needs to get rendered
const paymentMethodForm = document.getElementById('payment-method-form');
const confirmationForm = document.getElementById('confirmation-form');
Can we get some documentation for @stripe/react-stripe-js
Do we have the custom form which is referred in the documentation "// Use the form that already exists on the web page."
Can we get some documentation for @stripe/react-stripe-js
AFAIk, there is no particular documentation for this particular use case for react native, but you can refer to this complete html page I think:
https://github.com/stripe-samples/accept-a-payment/blob/main/custom-payment-flow/client/html/ach.html
and js
https://github.com/stripe-samples/accept-a-payment/blob/main/custom-payment-flow/client/html/ach.js
And try to design an integration with react
This is the form in your website, it can be for example the form payment-form in the sample I shared above.
ok fine will check it thanks!