mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
26 lines
684 B
JavaScript
26 lines
684 B
JavaScript
|
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,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = connect(mapStateToProps, mapDispatchToProps)(MobileSyncPage)
|