import { View, Text, Pressable, Dimensions } from 'react-native'; import { SafeAreaView } from 'react-native-safe-area-context'; import { router } from 'expo-router'; import { CrossLogoSvg } from '../global/SVG'; import BookingTabViewComponent from '../global/bookingTabViewComponent'; import { useTranslation } from '../../util/hooks/useTranslation'; const ActivityRecordPageComponent = () => { const screenHeight = Dimensions.get('window').height; const { t } = useTranslation(); return ( { if (router.canGoBack()) { router.back(); } else { router.replace('/accountMainPage'); } }} > {t('chargingHistory.charging_records')} ); }; export default ActivityRecordPageComponent;