618ab5e195
* Refactor notificationHeaderButton * Add Tooltips to header buttons and replace reach/ui * Decrease --header-height by 20% * more header cherry-pick Co-authored-by: Rafael <rafael.saes@odysee.com>
14 lines
488 B
JavaScript
14 lines
488 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectUnseenNotificationCount } from 'redux/selectors/notifications';
|
|
import { doSeeAllNotifications } from 'redux/actions/notifications';
|
|
import { selectUser } from 'redux/selectors/user';
|
|
import NotificationHeaderButton from './view';
|
|
|
|
const select = (state) => ({
|
|
unseenCount: selectUnseenNotificationCount(state),
|
|
user: selectUser(state),
|
|
});
|
|
|
|
export default connect(select, {
|
|
doSeeAllNotifications,
|
|
})(NotificationHeaderButton);
|