├── home.png ├── components ├── forms │ ├── Input.js │ ├── TextArea.js │ ├── FieldError.js │ ├── Section.js │ ├── index.js │ ├── Label.js │ ├── SelectField.js │ ├── InputField.js │ ├── TextAreaField.js │ └── Select.js ├── Main.js ├── Footer.js ├── stripe │ ├── Show.js │ ├── LastName.js │ ├── FirstName.js │ ├── Address.js │ ├── Document.js │ ├── AdditionalOwners.js │ ├── DateOfBirth.js │ ├── BankAccountForm.js │ └── LegalEntityForm.js ├── Layout.js ├── Button.js └── Header.js ├── pages ├── index.js ├── _document.js └── drivers │ ├── payout-methods.js │ ├── create.js │ └── setup.js ├── package.json ├── LICENSE ├── README.md ├── .gitignore └── utils └── countriesSpecs.js /home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jferrettiboke/react-stripe-app-example/HEAD/home.png -------------------------------------------------------------------------------- /components/forms/Input.js: -------------------------------------------------------------------------------- 1 | export default ({ ...props }) => ( 2 | 3 | ); 4 | -------------------------------------------------------------------------------- /components/forms/TextArea.js: -------------------------------------------------------------------------------- 1 | export default ({ ...props }) => ( 2 |