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