mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-28 23:06:37 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
21 lines
593 B
JavaScript
21 lines
593 B
JavaScript
import { connect } from 'react-redux';
|
|
import { clearSend } from '../../../store/actions';
|
|
import { getTitleKey } from '../../../selectors';
|
|
import { getMostRecentOverviewPage } from '../../../ducks/history/history';
|
|
import SendHeader from './send-header.component';
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SendHeader);
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
titleKey: getTitleKey(state),
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
clearSend: () => dispatch(clearSend()),
|
|
};
|
|
}
|