lbry-desktop/ui/page/wallet/view.jsx
jessop fdd20ef350 use txo list for wallet page:
paginated
enable revoking
filtering

txo pagination changes

move constants

remove fetchTransactions() calls

review changes

final changes
2020-04-15 11:12:29 -04:00

26 lines
597 B
JavaScript

// @flow
import React from 'react';
import { withRouter } from 'react-router';
import WalletBalance from 'component/walletBalance';
import TxoList from 'component/txoList';
import Page from 'component/page';
type Props = {
history: { action: string, push: string => void, replace: string => void },
location: { search: string, pathname: string },
};
const WalletPage = (props: Props) => {
const { location } = props;
const { search } = location;
return (
<Page>
<WalletBalance />
<TxoList search={search} />
</Page>
);
};
export default withRouter(WalletPage);