You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
684 B
25 lines
684 B
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)
|
|
|