mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
4f0a205369
* Use eslint@6.8.0 * yarn lint:fix
24 lines
626 B
JavaScript
24 lines
626 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)
|