mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
20 lines
483 B
JavaScript
20 lines
483 B
JavaScript
import { connect } from 'react-redux';
|
|
import { getSendHexData, updateSendHexData } from '../../../../ducks/send';
|
|
import SendHexDataRow from './send-hex-data-row.component';
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SendHexDataRow);
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
data: getSendHexData(state),
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
updateSendHexData(data) {
|
|
return dispatch(updateSendHexData(data));
|
|
},
|
|
};
|
|
}
|