import React from 'react'; import { StyleSheet, ActivityIndicator, View } from 'react-native'; import { COLOR_TEXT } from '../../constants/colors'; const styles = StyleSheet.create({ container: { height: '100%', width: '100%', position: 'absolute', justifyContent: 'center', alignItems: 'center' } }); const Loading = React.memo(() => ( )); export default Loading;