// @flow import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import React from 'react'; import CreditAmount from 'component/common/credit-amount'; import Button from 'component/button'; import Card from 'component/common/card'; import Icon from 'component/common/icon'; import I18nMessage from 'component/i18nMessage'; type Props = { accountDetails: any, }; const WalletBalance = (props: Props) => { const { accountDetails, } = props; console.log('account details'); console.log(accountDetails); const [detailsExpanded, setDetailsExpanded] = React.useState(false); return ( <>{{(accountDetails && (accountDetails.total_received_unpaid / 100)) || 0} USD} subtitle={ This is your remaining balance that can still be withdrawn to your bank account } actions={ <>

${(accountDetails && (accountDetails.total_tipped / 100)) || 0} Total Received Tips

${(accountDetails && (accountDetails.total_paid_out / 100)) || 0} Withdrawn

{/* view more section */} {detailsExpanded && (
{__('Earned from uploads')} {/* ({__('Earned from channel page')}) */}
{Boolean(1) && (
{__('Earned from channel page')} {/* ({__('Delete or edit past content to spend')}) */}
{/*
*/} {/* {__('...supporting content')} */} {/* ({__('Delete supports to spend')}) */} {/*
*/} {/*
*/} {/* */} {/*
*/}
)}
} />} ); }; export default WalletBalance;