import AccountInfo, { AccountInfoProps } from "./AccountInfo"; import ToolBox from "./ToolBox"; interface PropsType { className?: string; accountInfo: AccountInfoProps; showSetting?: boolean; onClose?: () => void; onBack?: () => void; onChangePayPin?: () => void; } const ConnectedMain = ({ accountInfo, showSetting, onChangePayPin, }: PropsType) => { return (