mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-04 23:14:56 +01:00
17 lines
488 B
JavaScript
17 lines
488 B
JavaScript
|
import { connect } from 'react-redux'
|
||
|
import { compose } from 'recompose'
|
||
|
import withModalProps from '../../../higher-order-components/with-modal-props'
|
||
|
import ForceInjectionComponent from './force-injection.component'
|
||
|
import { forceInjection } from '../../../actions'
|
||
|
|
||
|
const mapDispatchToProps = dispatch => {
|
||
|
return {
|
||
|
forceInjection: () => dispatch(forceInjection()),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default compose(
|
||
|
withModalProps,
|
||
|
connect(null, mapDispatchToProps)
|
||
|
)(ForceInjectionComponent)
|