You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
534 B
19 lines
534 B
import { connect } from 'react-redux';
|
|
|
|
import { getOnboardingInitiator } from '../../../selectors';
|
|
import { setCompletedOnboarding } from '../../../store/actions';
|
|
import EndOfFlow from './end-of-flow.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
return {
|
|
onboardingInitiator: getOnboardingInitiator(state),
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
setCompletedOnboarding: () => dispatch(setCompletedOnboarding()),
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(EndOfFlow);
|
|
|