mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-04 23:14:56 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
20 lines
473 B
JavaScript
20 lines
473 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));
|
|
},
|
|
};
|
|
}
|