lbry-desktop/ui/page/wallet/index.js

13 lines
287 B
JavaScript
Raw Normal View History

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