lbry-desktop/ui/component/fileAuthor/index.js
2020-01-06 16:35:43 -05:00

10 lines
279 B
JavaScript

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