2019-06-17 22:32:38 +02:00
|
|
|
import { connect } from 'react-redux';
|
2020-06-01 19:03:19 +02:00
|
|
|
import { selectBalance } from 'lbry-redux';
|
|
|
|
import { doOpenModal } from 'redux/actions/app';
|
2019-06-17 22:32:38 +02:00
|
|
|
import Wallet from './view';
|
|
|
|
|
2020-06-01 19:03:19 +02:00
|
|
|
const select = state => ({
|
|
|
|
balance: selectBalance(state),
|
|
|
|
});
|
2019-06-17 22:32:38 +02:00
|
|
|
|
2020-06-01 19:03:19 +02:00
|
|
|
export default connect(select, {
|
|
|
|
doOpenModal,
|
|
|
|
})(Wallet);
|