Spaces:
Sleeping
Sleeping
File size: 482 Bytes
cba4e90 692fef9 cba4e90 692fef9 cba4e90 692fef9 cba4e90 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import { StatusBar } from 'expo-status-bar';
import { StyleSheet, View } from 'react-native';
import { MainScreen } from './src/components/MainScreen';
/**
* 应用根组件 - 引入主屏幕
*/
export default function App() {
return (
<View style={styles.container}>
{/* 渲染主屏幕 */}
<MainScreen />
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
},
});
|