2021-03-10 13:34:21 -05:00
|
|
|
import { connect } from 'react-redux';
|
2021-03-18 13:21:49 -04:00
|
|
|
import { makeSelectClaimForUri, makeSelectThumbnailForUri } from 'lbry-redux';
|
2021-03-10 13:34:21 -05:00
|
|
|
import LivestreamLayout from './view';
|
|
|
|
|
|
|
|
const select = (state, props) => ({
|
|
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
2021-03-18 13:21:49 -04:00
|
|
|
thumbnail: makeSelectThumbnailForUri(props.uri)(state),
|
2021-03-10 13:34:21 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select)(LivestreamLayout);
|