SDK React-Native
Installation
npx expo install react-native-webview
npm install @kkiapay-org/react-native-sdkUsage
Import KKiaPay provider to access all context's features
// In your app file -- App
import { KkiapayProvider } from '@kkiapay-org/react-native-sdk';
import TestComponent from './TestComponent';
export default function App() {
return (
<KkiapayProvider>
<TestComponent />
</KkiapayProvider>
);
}Use the useKkiapay hook and get all available functions
Last updated
Was this helpful?