lbry-desktop/ui/page/wallet/index.js
Sean Yesmunt e7cdd6c13d moonpay
2020-06-03 14:16:43 -04:00

13 lines
287 B
JavaScript

import { connect } from 'react-redux';
import { selectBalance } from 'lbry-redux';
import { doOpenModal } from 'redux/actions/app';
import Wallet from './view';
const select = state => ({
balance: selectBalance(state),
});
export default connect(select, {
doOpenModal,
})(Wallet);