// @flow import React from 'react'; import TransactionList from 'component/transactionList'; import { TX_LIST } from 'lbry-redux'; type Props = { fetchTransactions: (number, number) => void, fetchingTransactions: boolean, hasTransactions: boolean, transactions: Array, }; class TransactionListRecent extends React.PureComponent { componentDidMount() { const { fetchTransactions } = this.props; fetchTransactions(1, TX_LIST.LATEST_PAGE_SIZE); } render() { const { transactions } = this.props; return (
); } } export default TransactionListRecent;