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 {
|
2018-02-09 01:23:09 +01:00
|
|
|
asset: show.assetList[show.showAsset.id],
|
2018-02-07 19:52:09 +01:00
|
|
|
};
|
2018-02-05 01:40:28 +01:00
|
|
|
};
|
2018-02-01 01:43:15 +01:00
|
|
|
|
2018-02-07 19:52:09 +01:00
|
|
|
export default connect(mapStateToProps, null)(View);
|