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

10 lines
275 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2021-03-11 04:23:59 +01:00
import { makeSelectClaimForUri } from 'lbry-redux';
import LivestreamLink from './view';
const select = (state, props) => ({
channelClaim: makeSelectClaimForUri(props.uri)(state),
});
export default connect(select)(LivestreamLink);