activityRecordPage.tsx 350 B

123456789101112
  1. import { View, Text } from 'react-native';
  2. import ActivityRecordPageComponent from '../../../../component/accountPages/activityRecordPageComponent';
  3. const ActivityRecordPage = () => {
  4. return (
  5. <View className="flex-1">
  6. <ActivityRecordPageComponent />
  7. </View>
  8. );
  9. };
  10. export default ActivityRecordPage;