2018-02-07 19:52:09 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import View from './view';
|
2018-01-30 18:00:02 +01:00
|
|
|
|
2018-02-07 19:52:09 +01:00
|
|
|
const mapStateToProps = ({ show }) => {
|
|
|
|
return {
|
|
|
|
name : show.showAsset.claimData.name,
|
|
|
|
claimId: show.showAsset.claimData.claimId,
|
|
|
|
};
|
2018-01-30 18:00:02 +01:00
|
|
|
};
|
|
|
|
|
2018-02-07 19:52:09 +01:00
|
|
|
export default connect(mapStateToProps, null)(View);
|