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