2020-08-26 19:19:03 +02:00
|
|
|
import { connect } from 'react-redux';
|
2021-10-17 10:36:14 +02:00
|
|
|
import { selectBalance } from 'redux/selectors/wallet';
|
2022-05-05 11:02:08 +02:00
|
|
|
import YrblWalletEmpty from './view';
|
2020-08-26 19:19:03 +02:00
|
|
|
|
2021-03-10 07:06:59 +01:00
|
|
|
const select = (state) => ({
|
2020-08-26 19:19:03 +02:00
|
|
|
balance: selectBalance(state),
|
|
|
|
});
|
|
|
|
|
2022-05-05 11:02:08 +02:00
|
|
|
export default connect(select)(YrblWalletEmpty);
|