1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/components/pending-tx.js
Kevin Serrano 3ae479f5ac Unify wording for transaction options (#369)
* Unify wording for transaction options.

* Modify changelog.

* Fix wording and spacing.
2016-06-29 15:44:37 -07:00

50 lines
921 B
JavaScript

const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const PendingTxDetails = require('./pending-tx-details')
module.exports = PendingTx
inherits(PendingTx, Component)
function PendingTx () {
Component.call(this)
}
PendingTx.prototype.render = function () {
var state = this.props
var txData = state.txData
return (
h('div', {
key: txData.id,
}, [
// header
h('h3', {
style: {
fontWeight: 'bold',
textAlign: 'center',
},
}, 'Submit Transaction'),
// tx info
h(PendingTxDetails, state),
// send + cancel
h('.flex-row.flex-space-around', [
h('button', {
onClick: state.cancelTransaction,
}, 'Reject'),
h('button', {
onClick: state.sendTransaction,
}, 'Approve'),
]),
])
)
}