spee.ch/react/components/AssetTitle/index.js
2018-02-08 16:23:09 -08:00

10 lines
242 B
JavaScript

import { connect } from 'react-redux';
import View from './view';
const mapStateToProps = ({ show }) => {
return {
title: show.assetList[show.showAsset.id].claimData.title,
};
};
export default connect(mapStateToProps, null)(View);