mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
21 lines
585 B
JavaScript
21 lines
585 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()),
|
|
}
|
|
}
|