mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
26 lines
686 B
JavaScript
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)
|