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.
26 lines
533 B
26 lines
533 B
import { compose } from 'redux'
|
|
import { connect } from 'react-redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { lockMetamask } from '../../store/actions'
|
|
import Lock from './lock.component'
|
|
|
|
const mapStateToProps = (state) => {
|
|
const {
|
|
metamask: { isUnlocked },
|
|
} = state
|
|
|
|
return {
|
|
isUnlocked,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
lockMetamask: () => dispatch(lockMetamask()),
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(Lock)
|
|
|