A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/app/pages/send/send-content/send-from-row/send-from-row.component.js

28 lines
626 B

7 years ago
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import SendRowWrapper from '../send-row-wrapper'
import AccountListItem from '../../account-list-item'
7 years ago
export default class SendFromRow extends Component {
static propTypes = {
from: PropTypes.object,
}
7 years ago
static contextTypes = {
t: PropTypes.func,
}
7 years ago
render () {
const { t } = this.context
const { from } = this.props
7 years ago
return (
<SendRowWrapper label={`${t('from')}:`}>
<div className="send-v2__from-dropdown">
<AccountListItem account={from} />
</div>
7 years ago
</SendRowWrapper>
)
7 years ago
}
}