import { View, Text, StyleProp, ViewStyle } from 'react-native'; import React from 'react'; interface ExpectedFeeBoxProps { extendedStyle?: StyleProp; } // SearchPage: React.FC //this is a reuseable component "預計充電費用" 灰色格仔 on Charging Page const ExpectedFeeBox: React.FC = ({ extendedStyle }) => { return ( 預計充電費用 按每度電結算: 50 kWh HK$ 175 ); }; export default ExpectedFeeBox;