Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create the Faq Section #500

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions docs/faq.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
title: Frequently Asked Questions
---

# Frequently Asked Questions :question:

<details>
<summary>
How can i get started with react stripe.js

React Stripe.js is a thin wrapper around Stripe Elements. It allows you to add Elements to any React app

</summary>
</details>

<details>
<summary>
What is the recommended approach if you are using an older version of React?

The minimum supported version of React is v16.8. If you use an older version, upgrade React to use this library. If you prefer not to upgrade your React version, we recommend using legacy react-stripe-elements.

</summary>
</details>


<details>
<summary>Where can i find the documentation for React Stripe.js?</summary>

You can find it [here](https://docs.stripe.com/stripe-js/react) to learn more about our features
</details>


<details>
<summary>
Can i used my own input elements instead stripe elements

It is possible, but not recommended. You need to be aware that this has PCI compliance implications and you'll need to contact our [support](https://support.stripe.com) team to have this enabled for your account.
</summary>
</details>


<details>
<summary>What is the loadStripe function used for in the examples?</summary>

The loadStripe function asynchronously loads the Stripe.js script and initializes a Stripe object
</details>