mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
29 lines
829 B
JavaScript
29 lines
829 B
JavaScript
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import PageContainerContent from '../../page-container/page-container-content.component'
|
|
import SendAmountRow from './send-amount-row/'
|
|
import SendFromRow from './send-from-row/'
|
|
import SendGasRow from './send-gas-row/'
|
|
import SendToRow from './send-to-row/'
|
|
|
|
export default class SendContent extends Component {
|
|
|
|
static propTypes = {
|
|
updateGas: PropTypes.func,
|
|
};
|
|
|
|
render () {
|
|
return (
|
|
<PageContainerContent>
|
|
<div className="send-v2__form">
|
|
<SendFromRow />
|
|
<SendToRow updateGas={(updateData) => this.props.updateGas(updateData)} />
|
|
<SendAmountRow updateGas={(updateData) => this.props.updateGas(updateData)} />
|
|
<SendGasRow />
|
|
</div>
|
|
</PageContainerContent>
|
|
)
|
|
}
|
|
|
|
}
|