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.
17 lines
517 B
17 lines
517 B
4 years ago
|
import { connect } from 'react-redux';
|
||
5 years ago
|
import {
|
||
|
setSeedPhraseBackedUp,
|
||
5 years ago
|
initializeThreeBox,
|
||
4 years ago
|
} from '../../../../store/actions';
|
||
|
import ImportWithSeedPhrase from './import-with-seed-phrase.component';
|
||
5 years ago
|
|
||
5 years ago
|
const mapDispatchToProps = (dispatch) => {
|
||
5 years ago
|
return {
|
||
4 years ago
|
setSeedPhraseBackedUp: (seedPhraseBackupState) =>
|
||
|
dispatch(setSeedPhraseBackedUp(seedPhraseBackupState)),
|
||
5 years ago
|
initializeThreeBox: () => dispatch(initializeThreeBox()),
|
||
4 years ago
|
};
|
||
|
};
|
||
5 years ago
|
|
||
4 years ago
|
export default connect(null, mapDispatchToProps)(ImportWithSeedPhrase);
|