mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
b3d78ed8a1
Revert accidentally changed constants. Require defaults in ens-input, gas-fee-display and confirm screens.
20 lines
514 B
JavaScript
20 lines
514 B
JavaScript
import { connect } from 'react-redux'
|
|
import { clearSend } from '../../../actions'
|
|
import SendHeader from './send-header.component'
|
|
import { getSubtitleParams, getTitleKey } from './send-header.selectors'
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SendHeader)
|
|
|
|
function mapStateToProps (state) {
|
|
return {
|
|
titleKey: getTitleKey(state),
|
|
subtitleParams: getSubtitleParams(state),
|
|
}
|
|
}
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
return {
|
|
clearSend: () => dispatch(clearSend()),
|
|
}
|
|
}
|