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