2020-01-30 16:01:23 -05:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { makeSelectClaimForUri, makeSelectTitleForUri } from 'lbry-redux';
|
2020-01-30 17:25:15 -05:00
|
|
|
import ClaimPreviewTitle from './view';
|
2020-01-30 16:01:23 -05:00
|
|
|
|
|
|
|
const select = (state, props) => ({
|
|
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
|
|
title: makeSelectTitleForUri(props.uri)(state),
|
|
|
|
});
|
|
|
|
|
2020-01-30 17:25:15 -05:00
|
|
|
export default connect(select)(ClaimPreviewTitle);
|