1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/pages/mobile-sync/mobile-sync.container.js

26 lines
682 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 {
requestRevealSeedWords: password => dispatch(requestRevealSeedWords(password)),
fetchInfoToSync: () => dispatch(fetchInfoToSync()),
displayWarning: (message) => dispatch(displayWarning(message || null)),
}
}
const mapStateToProps = state => {
const {
metamask: {
selectedAddress,
},
} = state
return {
selectedAddress,
}
}
export default connect(mapStateToProps, mapDispatchToProps)(MobileSyncPage)