mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
c1e3c229bc
See [`import/order`](https://eslint.org/docs/rules/import/order) for more information. This change enables `import/order` and fixes the issues raised by the rule.
21 lines
587 B
JavaScript
21 lines
587 B
JavaScript
import { connect } from 'react-redux'
|
|
import { clearSend } from '../../../store/actions'
|
|
import { getTitleKey } from '../../../selectors'
|
|
import { getMostRecentOverviewPage } from '../../../ducks/history/history'
|
|
import SendHeader from './send-header.component'
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SendHeader)
|
|
|
|
function mapStateToProps (state) {
|
|
return {
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
titleKey: getTitleKey(state),
|
|
}
|
|
}
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
return {
|
|
clearSend: () => dispatch(clearSend()),
|
|
}
|
|
}
|