mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
22 lines
466 B
JavaScript
22 lines
466 B
JavaScript
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))
|
|
},
|
|
}
|
|
}
|