aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/account-and-transaction-details.js
blob: 03101d37a6081cf48e9e08efdd185bfc7a170b38 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                             
                                                   










                                                 
        




        
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: {
      },
    }, [
    ]),
  ])
}