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.
20 lines
514 B
20 lines
514 B
7 years ago
|
import { connect } from 'react-redux'
|
||
7 years ago
|
import { clearSend } from '../../../actions'
|
||
7 years ago
|
import SendHeader from './send-header.component'
|
||
7 years ago
|
import { getSubtitleParams, getTitleKey } from './send-header.selectors'
|
||
7 years ago
|
|
||
|
export default connect(mapStateToProps, mapDispatchToProps)(SendHeader)
|
||
|
|
||
|
function mapStateToProps (state) {
|
||
|
return {
|
||
7 years ago
|
titleKey: getTitleKey(state),
|
||
|
subtitleParams: getSubtitleParams(state),
|
||
7 years ago
|
}
|
||
|
}
|
||
|
|
||
|
function mapDispatchToProps (dispatch) {
|
||
|
return {
|
||
|
clearSend: () => dispatch(clearSend()),
|
||
|
}
|
||
|
}
|