aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/send-content/send-hex-data-row/send-hex-data-row.container.js
blob: df554ca5f43b73b64a363161d01a80d79b819f19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { connect } from 'react-redux'
import {
  updateSendHexData,
} from '../../../../actions'
import SendHexDataRow from './send-hex-data-row.component'

export default connect(mapStateToProps, mapDispatchToProps)(SendHexDataRow)

function mapStateToProps (state) {
  return {
    data: state.metamask.send.data,
  }
}

function mapDispatchToProps (dispatch) {
  return {
    updateSendHexData (data) {
      return dispatch(updateSendHexData(data))
    },
  }
}