/** * ModuleLoadingPlaceholder - 模块加载中的占位组件 */ import React from 'react'; import { View, Text, ActivityIndicator, StyleSheet } from 'react-native'; interface Props { moduleId: string; } export function ModuleLoadingPlaceholder({ moduleId }: Props) { return ( 正在加载 {moduleId} 模块... ); } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#f5f5f5', }, text: { marginTop: 16, fontSize: 16, color: '#666', }, });