2018-02-07 19:52:09 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import View from './view';
|
2018-02-15 03:02:10 +01:00
|
|
|
import { selectAsset } from 'selectors/show';
|
2018-01-30 18:00:02 +01:00
|
|
|
|
2018-02-07 19:52:09 +01:00
|
|
|
const mapStateToProps = ({ show }) => {
|
2018-02-13 03:18:56 +01:00
|
|
|
// select title
|
2018-02-14 21:30:30 +01:00
|
|
|
const { claimData: { title } } = selectAsset(show);
|
2018-02-13 05:01:02 +01:00
|
|
|
// return props
|
|
|
|
return {
|
|
|
|
title,
|
2018-02-07 19:52:09 +01:00
|
|
|
};
|
2018-01-30 18:00:02 +01:00
|
|
|
};
|
|
|
|
|
2018-02-07 19:52:09 +01:00
|
|
|
export default connect(mapStateToProps, null)(View);
|