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