lbry-desktop/ui/component/rewardAuthIntro/index.js
2019-11-13 19:09:30 -05:00

13 lines
280 B
JavaScript

import { connect } from 'react-redux';
import { selectUnclaimedRewardValue } from 'lbryinc';
import RewardAuthIntro from './view';
const select = state => ({
totalRewardValue: selectUnclaimedRewardValue(state),
});
export default connect(
select,
null
)(RewardAuthIntro);