import { View, Text, StyleProp, ViewStyle } from 'react-native'; import React from 'react'; import { convertToHKTime } from '../../util/lib'; //this is a reuseable component "其他資訊" 灰色格仔 on Charging Page interface OtherInformationBoxProps { extendedStyle?: StyleProp; actual_start_time?: any; } const OtherInformationBox: React.FC = ({ extendedStyle, actual_start_time }) => { const formattedActualStartTime = convertToHKTime(actual_start_time).hkTime; return ( 其他資訊 開始時間 {formattedActualStartTime} 充電座 A104 ); }; export default OtherInformationBox;