import React, { Component } from 'react' import PropTypes from 'prop-types' import SendRowWrapper from '../send-row-wrapper/' import AccountListItem from '../../account-list-item' export default class SendFromRow extends Component { static propTypes = { from: PropTypes.object, } static contextTypes = { t: PropTypes.func, } render () { const { t } = this.context const { from } = this.props return (
) } }