penaltyPaymentPage.tsx 397 B

1234567891011121314
  1. import { View } from 'react-native';
  2. import React from 'react';
  3. import PenaltyPaymentPageComponent from '../../../../component/chargingPage/penaltyPaymentPageComponent';
  4. const PenaltyPaymentPage = ({ data }: { data: any }) => {
  5. return (
  6. <View className="flex-1">
  7. <PenaltyPaymentPageComponent />
  8. </View>
  9. );
  10. };
  11. export default PenaltyPaymentPage;