lbry-desktop/ui/component/publishPending/index.js

14 lines
440 B
JavaScript
Raw Normal View History

2020-05-07 14:22:55 +02:00
import { connect } from 'react-redux';
import { makeSelectReflectingClaimForUri, doCheckReflectingFiles } from 'lbry-redux';
import PublishPending from './view';
const select = (state, props) => ({
reflectingInfo: props.uri && makeSelectReflectingClaimForUri(props.uri)(state),
});
const perform = dispatch => ({
checkReflecting: () => dispatch(doCheckReflectingFiles()),
});
export default connect(select, perform)(PublishPending);