import React from 'react'; import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; import { useNavigation } from '@react-navigation/native'; import TabScreen from '../../components/Tab'; const MeScreen = () => { const navigation = useNavigation(); const getJump = async (data) => { navigation.navigate(data); }; return ( 我的 ); }; const styles = StyleSheet.create({ main: { paddingTop: 50, }, }); export default MeScreen;