mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-27 23:41:33 +00:00
9 lines
254 B
JavaScript
9 lines
254 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectBalance } from 'lbry-redux';
|
|
import FloatingWalletBalance from './view';
|
|
|
|
const select = state => ({
|
|
balance: selectBalance(state),
|
|
});
|
|
|
|
export default connect(select, null)(FloatingWalletBalance);
|