mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectClaimedRewards } from 'lbryinc';
|
|
import RewardListClaimed from './view';
|
|
|
|
const select = state => ({
|
|
rewards: selectClaimedRewards(state),
|
|
});
|
|
|
|
export default connect(
|
|
select,
|
|
null
|
|
)(RewardListClaimed);
|