mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
17 lines
517 B
JavaScript
17 lines
517 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
setSeedPhraseBackedUp,
|
|
initializeThreeBox,
|
|
} from '../../../../store/actions';
|
|
import ImportWithSeedPhrase from './import-with-seed-phrase.component';
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
setSeedPhraseBackedUp: (seedPhraseBackupState) =>
|
|
dispatch(setSeedPhraseBackedUp(seedPhraseBackupState)),
|
|
initializeThreeBox: () => dispatch(initializeThreeBox()),
|
|
};
|
|
};
|
|
|
|
export default connect(null, mapDispatchToProps)(ImportWithSeedPhrase);
|