lbry-desktop/ui/component/wunderbarSuggestion/index.js
2020-12-03 12:39:12 -05:00

10 lines
278 B
JavaScript

import { connect } from 'react-redux';
import { makeSelectClaimForUri } from 'lbry-redux';
import WunderbarSuggestion from './view';
const select = (state, props) => ({
claim: makeSelectClaimForUri(props.uri)(state),
});
export default connect(select)(WunderbarSuggestion);