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