Files
tipsi-stripe/example/index.ios.js
Anton Petrov a5d007f5b0 Stripe iOS implementation (#1)
Implemeted:

Apple Pay form
Add Card form
Create token based on card params
Wrapper for STPPaymentCardTextField
Added example iOS project, tests and local CI script

To run local CI you need to specify PUBLISHABLE_KEY and MERCHANT_ID environment variables:

PUBLISHABLE_KEY=<...> MERCHANT_ID=<...> npm run ci
2016-11-08 22:50:00 +03:00

5 lines
127 B
JavaScript

import { AppRegistry } from 'react-native'
import Root from './src/Root'
AppRegistry.registerComponent('example', () => Root)