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
2020-02-15 17:04:21 -03:30

26 lines
686 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,
}
}
export default connect(mapStateToProps, mapDispatchToProps)(MobileSyncPage)