import React from 'react'; import { Modal } from '@douyinfe/semi-ui'; import { renderQuota, renderNumber } from '../../../../helpers'; const UserInfoModal = ({ showUserInfo, setShowUserInfoModal, userInfoData, t, }) => { return ( setShowUserInfoModal(false)} footer={null} centered={true} > {userInfoData && (

{t('用户名')}: {userInfoData.username}

{t('余额')}: {renderQuota(userInfoData.quota)}

{t('已用额度')}:{renderQuota(userInfoData.used_quota)}

{t('请求次数')}:{renderNumber(userInfoData.request_count)}

)}
); }; export default UserInfoModal;