lbry-desktop/ui/component/walletSpendableBalanceHelp/index.js
2021-07-17 13:19:33 -04:00

10 lines
260 B
JavaScript

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