2017-12-21 22:08:54 +01:00
|
|
|
import React from 'react';
|
2019-03-18 16:40:42 +01:00
|
|
|
import classnames from 'classnames';
|
2017-12-21 22:08:54 +01:00
|
|
|
import WalletBalance from 'component/walletBalance';
|
|
|
|
import RewardSummary from 'component/rewardSummary';
|
|
|
|
import TransactionListRecent from 'component/transactionListRecent';
|
2018-03-26 23:32:43 +02:00
|
|
|
import WalletAddress from 'component/walletAddress';
|
|
|
|
import Page from 'component/page';
|
2019-03-18 16:40:42 +01:00
|
|
|
import UnsupportedOnWeb from 'component/common/unsupported-on-web';
|
2017-04-22 15:17:01 +02:00
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
const WalletPage = () => (
|
|
|
|
<Page>
|
2019-03-18 16:40:42 +01:00
|
|
|
{IS_WEB && <UnsupportedOnWeb />}
|
|
|
|
<div className={classnames({ 'card--disabled': IS_WEB })}>
|
2019-03-25 07:18:22 +01:00
|
|
|
<div className="columns">
|
2019-03-18 16:40:42 +01:00
|
|
|
<WalletBalance />
|
|
|
|
<RewardSummary />
|
|
|
|
</div>
|
|
|
|
<WalletAddress />
|
|
|
|
<TransactionListRecent />
|
2017-12-21 22:08:54 +01:00
|
|
|
</div>
|
2018-03-26 23:32:43 +02:00
|
|
|
</Page>
|
2017-12-21 22:08:54 +01:00
|
|
|
);
|
2017-04-22 15:17:01 +02:00
|
|
|
|
|
|
|
export default WalletPage;
|