20 lines
560 B
JavaScript
20 lines
560 B
JavaScript
import React from "react";
|
|
import rewards from "rewards";
|
|
import { connect } from "react-redux";
|
|
import { doCloseModal } from "actions/app";
|
|
import { makeSelectRewardByType } from "selectors/rewards";
|
|
import ModalFirstReward from "./view";
|
|
|
|
const select = (state, props) => {
|
|
const selectReward = makeSelectRewardByType();
|
|
|
|
return {
|
|
reward: selectReward(state, { reward_type: rewards.TYPE_NEW_USER }),
|
|
};
|
|
};
|
|
|
|
const perform = dispatch => ({
|
|
closeModal: () => dispatch(doCloseModal()),
|
|
});
|
|
|
|
export default connect(select, perform)(ModalFirstReward);
|