2021-02-02 15:00:24 -05:00
|
|
|
import { connect } from 'react-redux';
|
2021-10-17 16:36:14 +08:00
|
|
|
import { selectBalance } from 'redux/selectors/wallet';
|
2021-02-02 15:00:24 -05:00
|
|
|
import WalletSpendableBalanceHelp from './view';
|
|
|
|
|
2021-10-28 17:25:34 -03:00
|
|
|
const select = (state) => ({ balance: selectBalance(state) });
|
2021-02-02 15:00:24 -05:00
|
|
|
|
|
|
|
export default connect(select)(WalletSpendableBalanceHelp);
|