-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
23 lines (21 loc) · 728 Bytes
/
App.js
File metadata and controls
23 lines (21 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React from 'react';
import {View, Text} from 'react-native';
import Payment from './src/Payment';
const App = () => {
return (
// <View style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}>
// <Text>Lets try</Text>
// <Text style={{fontSize: 20, margin: 10}}>
// HyperPay Support in React Native
// </Text>
// <Text style={{fontSize: 16, margin: 10, textAlign: 'center'}}>
// Great! Native Module for android is integrated. Cheers
// </Text>
// <Text style={{fontSize: 16, margin: 10, textAlign: 'center'}}>
// Great! Native Module for iOS also integrated. Cheers
// </Text>
// </View>
<Payment />
);
};
export default App;