lbry-desktop/ui/component/walletTipAmountSelector/index.js
2021-04-23 16:20:17 -04:00

10 lines
261 B
JavaScript

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