11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
import { connect } from 'react-redux';
|
|
import View from './view';
|
|
|
|
const mapStateToProps = ({ show }) => {
|
|
return {
|
|
name : show.showAsset.claimData.name,
|
|
claimId: show.showAsset.claimData.claimId,
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps, null)(View);
|