- import { View } from 'react-native';
- import React from 'react';
- import ChargingPenaltyPageComponent from '../../../../component/chargingPage/chargingPenaltyComponent';
- const ChargingPenaltyPage = ({ data }: { data: any }) => {
- return (
- <View className="flex-1">
- <ChargingPenaltyPageComponent data={data} />
- </View>
- );
- };
- export default ChargingPenaltyPage;
|