import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; type Props = { text: string; }; export const Loading: React.FC = ({ text }) => { return ( {text} ); }; const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', }, });