lbry-desktop/src/ui/page/account/view.jsx

25 lines
760 B
React
Raw Normal View History

import React from 'react';
2019-03-18 16:40:42 +01:00
import classnames from 'classnames';
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';
2019-03-28 17:53:13 +01:00
import WalletSend from 'component/walletSend';
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>
<TransactionListRecent />
</div>
2018-03-26 23:32:43 +02:00
</Page>
);
2017-04-22 15:17:01 +02:00
export default WalletPage;