mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
24 lines
637 B
JavaScript
24 lines
637 B
JavaScript
import { connect } from 'react-redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { compose } from 'redux';
|
|
import { setFirstTimeFlowType } from '../../../store/actions';
|
|
import { getFirstTimeFlowTypeRoute } from '../../../selectors';
|
|
import Welcome from './select-action.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
return {
|
|
nextRoute: getFirstTimeFlowTypeRoute(state),
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
setFirstTimeFlowType: (type) => dispatch(setFirstTimeFlowType(type)),
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(Welcome);
|