changeCarPage.tsx 314 B

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