import React, {Component} from 'react'; import {View, Text, StyleSheet} from 'react-native'; class Mine extends Component { constructor() { super(); } render() { return ( Mine个人主页模块 ); } } const styles = StyleSheet.create({ container: { backgroundColor: '#F2E2CE', opacity: 0.5, flex: 1, }, text: { fontSize: 50, fontWeight: 'bold', textAlign: 'center', }, }); export default Mine;