mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-29 16:31:23 +00:00
* Created walletAddress and walletBalance components * Added walletSend and transaction list components. * added transaction history page
7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doNotify } from 'lbry-redux';
|
|
import Address from './view';
|
|
|
|
export default connect(null, {
|
|
doNotify,
|
|
})(Address);
|