mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
24 lines
635 B
JavaScript
24 lines
635 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 '../first-time-flow.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)
|