react-native-paysofter
Version:
This is a React Native package for integrating Paysofter payment gateway into your React Native application.
29 lines (25 loc) • 558 B
JavaScript
// UssdPayment.js
import React from "react";
import { View, Text, StyleSheet } from "react-native";
const UssdPayment = () => {
return (
<View style={styles.container}>
<Text style={styles.title}>USSD</Text>
<Text>Coming soon...</Text>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: "center",
padding: 16,
},
title: {
fontSize: 24,
fontWeight: "bold",
marginBottom: 16,
},
});
export default UssdPayment;