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