chargingPenaltyPage.tsx 412 B

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