mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
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);
|