You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
593 B
21 lines
593 B
4 years ago
|
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';
|
||
7 years ago
|
|
||
4 years ago
|
export default connect(mapStateToProps, mapDispatchToProps)(SendHeader);
|
||
7 years ago
|
|
||
4 years ago
|
function mapStateToProps(state) {
|
||
7 years ago
|
return {
|
||
5 years ago
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
||
7 years ago
|
titleKey: getTitleKey(state),
|
||
4 years ago
|
};
|
||
7 years ago
|
}
|
||
|
|
||
4 years ago
|
function mapDispatchToProps(dispatch) {
|
||
7 years ago
|
return {
|
||
|
clearSend: () => dispatch(clearSend()),
|
||
4 years ago
|
};
|
||
7 years ago
|
}
|