import React from 'react'; import { View, Text, ActivityIndicator, StyleSheet } from 'react-native'; const Loading = () => { return ( 로딩 중... ); }; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: 'rgba(0, 0, 0, 0.2)', }, text: { marginTop: 10, fontSize: 16, color: '#000', }, }); export default Loading;