2018-02-02 04:36:08 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import View from './view';
|
|
|
|
|
|
|
|
const mapStateToProps = ({ show }) => {
|
|
|
|
return {
|
2018-02-02 20:10:58 +01:00
|
|
|
modifier : show.assetRequest.modifier,
|
|
|
|
claim : show.assetRequest.name,
|
|
|
|
extension: show.assetRequest.extension,
|
2018-02-02 04:36:08 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-02-02 21:46:18 +01:00
|
|
|
export default connect(mapStateToProps, null)(View);
|