spee.ch/react/components/ShowAssetDetails/index.js

11 lines
221 B
JavaScript
Raw Normal View History

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