feat: add wallet settings page

This commit is contained in:
Luis Félix 2020-02-07 12:43:30 +00:00 committed by Josh Harvey
parent 20674c4b12
commit 1f7ae74b42
31 changed files with 1793 additions and 258 deletions

View file

@ -13,6 +13,7 @@ import OperatorInfo from 'src/pages/OperatorInfo/OperatorInfo'
import ServerLogs from 'src/pages/ServerLogs'
import Services from 'src/pages/Services/Services'
import Transactions from 'src/pages/Transactions/Transactions'
import WalletSettings from 'src/pages/Wallet/WalletSettings'
import MachineStatus from 'src/pages/maintenance/MachineStatus'
const tree = [
@ -93,6 +94,12 @@ const tree = [
label: 'Operator Info',
route: '/settings/operator-info',
component: OperatorInfo
},
{
key: 'wallet',
label: 'Wallet',
route: '/settings/wallet',
component: WalletSettings
}
]
},