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.
33 lines
733 B
33 lines
733 B
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
const inherits = require('util').inherits
|
|
// Main Views
|
|
const TxView = require('./components/tx-view')
|
|
const WalletView = require('./components/wallet-view')
|
|
|
|
module.exports = AccountAndTransactionDetails
|
|
|
|
inherits(AccountAndTransactionDetails, Component)
|
|
function AccountAndTransactionDetails () {
|
|
Component.call(this)
|
|
}
|
|
|
|
AccountAndTransactionDetails.prototype.render = function () {
|
|
return h('div.account-and-transaction-details', [
|
|
// wallet
|
|
h(WalletView, {
|
|
style: {
|
|
},
|
|
responsiveDisplayClassname: '.lap-visible',
|
|
}, [
|
|
]),
|
|
|
|
// transaction
|
|
h(TxView, {
|
|
style: {
|
|
},
|
|
}, [
|
|
]),
|
|
])
|
|
}
|
|
|
|
|