aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/account-and-transaction-details.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-07-25 02:40:05 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-08-24 07:44:43 +0800
commit3b408715c745030aed6e720e6f19dc8f2aa511d1 (patch)
tree9dd80e685a533f673e7d3af7b70385240c011153 /ui/app/account-and-transaction-details.js
parentdae07b32e50de8a3aa4c89d266c9272155beaaa4 (diff)
downloadtangerine-wallet-browser-3b408715c745030aed6e720e6f19dc8f2aa511d1.tar.gz
tangerine-wallet-browser-3b408715c745030aed6e720e6f19dc8f2aa511d1.tar.zst
tangerine-wallet-browser-3b408715c745030aed6e720e6f19dc8f2aa511d1.zip
Refactor home screen and remove unused files
Diffstat (limited to 'ui/app/account-and-transaction-details.js')
-rw-r--r--ui/app/account-and-transaction-details.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/ui/app/account-and-transaction-details.js b/ui/app/account-and-transaction-details.js
deleted file mode 100644
index 03101d37a..000000000
--- a/ui/app/account-and-transaction-details.js
+++ /dev/null
@@ -1,33 +0,0 @@
-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: {
- },
- }, [
- ]),
- ])
-}
-