import React from 'react'; import { translate } from '../../../translate/translate'; import WalletsBasiliskRefresh from '../walletsBasiliskRefresh/walletsBasiliskRefresh'; import WalletsBasiliskConnection from '../walletsBasiliskConnection/walletsBasiliskConnection'; import WalletsNotariesList from '../walletsNotariesList/walletsNotariesList'; import WalletsCacheData from '../walletsCacheData/walletsCacheData'; import ReactTable from 'react-table'; import TablePaginationRenderer from './pagination'; import { formatValue } from '../../../util/formatValue'; import Config from '../../../config'; export const AddressTypeRender = function() { return ( { translate('IAPI.PUBLIC_SM') } ); }; export const TransactionDetailRender = function(transactionIndex) { return ( ); }; export const AddressRender = function(tx) { if (!tx.address) { return ( { translate('DASHBOARD.ZADDR_NOT_LISTED') } ); } return tx.address; }; export const AddressItemRender = function(address, type, amount, coin) { return (