aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/pages/send/send-header/send-header.container.js
blob: 1a9c5e9c0df870cf27d6208966fa2da2eef741f4 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                     
                                                  
                                                
                                                                        




                                                                       

                                             




                                        


                                           
import { connect } from 'react-redux'
import { clearSend } from '../../../store/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()),
  }
}