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.
23 lines
704 B
23 lines
704 B
import { connect } from 'react-redux';
|
|
import {
|
|
setCompletedOnboarding,
|
|
setSeedPhraseBackedUp,
|
|
} from '../../../../store/actions';
|
|
import { getOnboardingInitiator } from '../../../../selectors';
|
|
import RevealSeedPhrase from './reveal-seed-phrase.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
return {
|
|
onboardingInitiator: getOnboardingInitiator(state),
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
setSeedPhraseBackedUp: (seedPhraseBackupState) =>
|
|
dispatch(setSeedPhraseBackedUp(seedPhraseBackupState)),
|
|
setCompletedOnboarding: () => dispatch(setCompletedOnboarding()),
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(RevealSeedPhrase);
|
|
|