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