2021-02-02 15:00:24 -05:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { selectBalance } from 'lbry-redux';
|
|
|
|
import WalletSpendableBalanceHelp from './view';
|
|
|
|
|
2021-07-17 12:08:53 -04:00
|
|
|
const select = (state) => ({
|
2021-02-02 15:00:24 -05:00
|
|
|
balance: selectBalance(state),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select)(WalletSpendableBalanceHelp);
|