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