1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 12:52:33 +02:00
metamask-extension/ui/app/pages/mobile-sync/mobile-sync.container.js

26 lines
686 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux'
import { displayWarning, requestRevealSeedWords, fetchInfoToSync } from '../../store/actions'
import MobileSyncPage from './mobile-sync.component'
const mapDispatchToProps = (dispatch) => {
return {
2020-02-15 21:34:12 +01:00
requestRevealSeedWords: (password) => dispatch(requestRevealSeedWords(password)),
fetchInfoToSync: () => dispatch(fetchInfoToSync()),
displayWarning: (message) => dispatch(displayWarning(message || null)),
}
}
2020-02-15 21:34:12 +01:00
const mapStateToProps = (state) => {
const {
metamask: {
selectedAddress,
},
} = state
return {
selectedAddress,
}
}
export default connect(mapStateToProps, mapDispatchToProps)(MobileSyncPage)