17 lines
519 B
JavaScript
17 lines
519 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { doSignOut } from 'redux/actions/app';
|
||
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
||
|
import { selectUserEmail } from 'redux/selectors/user';
|
||
|
import HeaderProfileMenuButton from './view';
|
||
|
|
||
|
const select = (state) => ({
|
||
|
activeChannelClaim: selectActiveChannelClaim(state),
|
||
|
email: selectUserEmail(state),
|
||
|
});
|
||
|
|
||
|
const perform = (dispatch) => ({
|
||
|
signOut: () => dispatch(doSignOut()),
|
||
|
});
|
||
|
|
||
|
export default connect(select, perform)(HeaderProfileMenuButton);
|