aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages/send/send-content/send-hex-data-row/send-hex-data-row.container.js
blob: 8b1c540c3091f8bcb5bd1c1f04ef3c3fbd01dde7 (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 '../../../../store/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))
    },
  }
}