react-native-paysofter
Version:
This is a React Native package for integrating Paysofter payment gateway into your React Native application.
14 lines (11 loc) • 326 B
JavaScript
// Loader.js
import React from 'react';
import { View, ActivityIndicator } from 'react-native';
function Loader() {
return (
<View style={{ justifyContent: 'center', alignItems: 'center', padding: '20' }}>
<ActivityIndicator size="large" color="#007bff" />
</View>
);
}
export default Loader;