2018-02-02 03:42:03 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import View from './view';
|
|
|
|
|
|
|
|
const mapStateToProps = ({ show }) => {
|
|
|
|
return {
|
2018-02-02 21:46:18 +01:00
|
|
|
requestName: show.channelRequest.name,
|
|
|
|
requestId : show.channelRequest.id,
|
2018-02-02 03:42:03 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-02-02 21:46:18 +01:00
|
|
|
export default connect(mapStateToProps, null)(View);
|