20 lines
640 B
JavaScript
20 lines
640 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
selectNotifications,
|
|
selectIsFetchingNotifications,
|
|
selectUnseenNotificationCount,
|
|
} from 'redux/selectors/notifications';
|
|
import { doSeeAllNotifications } from 'redux/actions/notifications';
|
|
import { selectUser } from 'redux/selectors/user';
|
|
import NotificationHeaderButton from './view';
|
|
|
|
const select = state => ({
|
|
notifications: selectNotifications(state),
|
|
fetching: selectIsFetchingNotifications(state),
|
|
unseenCount: selectUnseenNotificationCount(state),
|
|
user: selectUser(state),
|
|
});
|
|
|
|
export default connect(select, {
|
|
doSeeAllNotifications,
|
|
})(NotificationHeaderButton);
|