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